mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-02 04:52:11 +00:00
tweaking editions
This commit is contained in:
parent
68c57e6766
commit
f4c271ebe8
5 changed files with 118 additions and 4 deletions
|
@ -29,7 +29,7 @@ for i in $myYMLS;
|
||||||
do
|
do
|
||||||
myITEMS+="$i $(echo $i | cut -d "." -f1 | tr [:lower:] [:upper:]) "
|
myITEMS+="$i $(echo $i | cut -d "." -f1 | tr [:lower:] [:upper:]) "
|
||||||
done
|
done
|
||||||
myEDITION=$(dialog --backtitle "$myBACKTITLE" --menu "Select T-Pot Edition" 17 50 10 $myITEMS 3>&1 1>&2 2>&3 3>&-)
|
myEDITION=$(dialog --backtitle "$myBACKTITLE" --menu "Select T-Pot Edition" 18 50 1 $myITEMS 3>&1 1>&2 2>&3 3>&-)
|
||||||
if [ "$myEDITION" == "" ];
|
if [ "$myEDITION" == "" ];
|
||||||
then
|
then
|
||||||
echo "Have a nice day!"
|
echo "Have a nice day!"
|
||||||
|
|
|
@ -163,6 +163,45 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /data:/data
|
- /data:/data
|
||||||
|
|
||||||
|
## Map Redis Service
|
||||||
|
map_redis:
|
||||||
|
container_name: map_redis
|
||||||
|
restart: always
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/redis:2203"
|
||||||
|
read_only: true
|
||||||
|
|
||||||
|
## Map Web Service
|
||||||
|
map_web:
|
||||||
|
container_name: map_web
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=AttackMapServer.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:64299:64299"
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
|
||||||
|
## Map Data Service
|
||||||
|
map_data:
|
||||||
|
container_name: map_data
|
||||||
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
elasticsearch:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=DataServer_v2.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
#### /ELK
|
||||||
|
|
||||||
# Ewsposter service
|
# Ewsposter service
|
||||||
ewsposter:
|
ewsposter:
|
||||||
container_name: ewsposter
|
container_name: ewsposter
|
||||||
|
|
|
@ -66,6 +66,45 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /data:/data
|
- /data:/data
|
||||||
|
|
||||||
|
## Map Redis Service
|
||||||
|
map_redis:
|
||||||
|
container_name: map_redis
|
||||||
|
restart: always
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/redis:2203"
|
||||||
|
read_only: true
|
||||||
|
|
||||||
|
## Map Web Service
|
||||||
|
map_web:
|
||||||
|
container_name: map_web
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=AttackMapServer.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:64299:64299"
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
|
||||||
|
## Map Data Service
|
||||||
|
map_data:
|
||||||
|
container_name: map_data
|
||||||
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
elasticsearch:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=DataServer_v2.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
#### /ELK
|
||||||
|
|
||||||
# Nginx service
|
# Nginx service
|
||||||
nginx:
|
nginx:
|
||||||
container_name: nginx
|
container_name: nginx
|
||||||
|
|
|
@ -510,9 +510,6 @@ services:
|
||||||
restart: always
|
restart: always
|
||||||
# environment:
|
# environment:
|
||||||
# - LS_JAVA_OPTS=-Xms2048m -Xmx2048m
|
# - LS_JAVA_OPTS=-Xms2048m -Xmx2048m
|
||||||
depends_on:
|
|
||||||
elasticsearch:
|
|
||||||
condition: service_healthy
|
|
||||||
env_file:
|
env_file:
|
||||||
- /opt/tpot/etc/compose/elk_environment
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
mem_limit: 2g
|
mem_limit: 2g
|
||||||
|
|
|
@ -478,6 +478,45 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- /data:/data
|
- /data:/data
|
||||||
|
|
||||||
|
## Map Redis Service
|
||||||
|
map_redis:
|
||||||
|
container_name: map_redis
|
||||||
|
restart: always
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/redis:2203"
|
||||||
|
read_only: true
|
||||||
|
|
||||||
|
## Map Web Service
|
||||||
|
map_web:
|
||||||
|
container_name: map_web
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=AttackMapServer.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
ports:
|
||||||
|
- "127.0.0.1:64299:64299"
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
|
||||||
|
## Map Data Service
|
||||||
|
map_data:
|
||||||
|
container_name: map_data
|
||||||
|
restart: always
|
||||||
|
depends_on:
|
||||||
|
elasticsearch:
|
||||||
|
condition: service_healthy
|
||||||
|
environment:
|
||||||
|
- MAP_COMMAND=DataServer_v2.py
|
||||||
|
env_file:
|
||||||
|
- /opt/tpot/etc/compose/elk_environment
|
||||||
|
stop_signal: SIGKILL
|
||||||
|
tty: true
|
||||||
|
image: "dtagdevsec/map_server:2203"
|
||||||
|
#### /ELK
|
||||||
|
|
||||||
# Ewsposter service
|
# Ewsposter service
|
||||||
ewsposter:
|
ewsposter:
|
||||||
container_name: ewsposter
|
container_name: ewsposter
|
||||||
|
|
Loading…
Reference in a new issue