-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
45 lines (38 loc) · 1.26 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
##############################
# Tulip config
##############################
# The connection string to connect to the mongo bd
TULIP_MONGO="mongo:27017"
# The location of your pcaps as seen by the host
TRAFFIC_DIR_HOST="~/Desktop/CTF/tulip/shared"
# The location of your pcaps (and eve.json), as seen by the container
TRAFFIC_DIR_DOCKER="/traffic"
##############################
# Game config
##############################
# Start time of the CTF (or network open if you prefer)
TICK_START="2024-07-04T10:00+02:00"
# Tick length in ms
TICK_LENGTH=180000
# The flag format in regex
FLAG_REGEX="[A-Z0-9]{31}="
##############################
# PCAP_OVER_IP CONFIGS
##############################
#PCAP_OVER_IP="host.docker.internal:1337"
# # For multiple PCAP_OVER_IP you can comma separate
#PCAP_OVER_IP="host.docker.internal:1337,otherhost.com:5050"
##############################
# FLAGID CONFIGS
##############################
# enable flagid scrapping
FLAGID_SCRAPE=1
# enable flagid scanning
FLAGID_SCAN=1
# Flag Lifetime in Ticks (-1 for no check, pls don't use outside testing)
FLAG_LIFETIME=-1
# Flagid endpoint currently Testendpoint in docker compose
FLAGID_ENDPOINT="http://flagidendpoint:8000/flagids.json"
# VM IP (inside gamenet)
VM_IP="10.60.3.1"
TEAM_ID="10.80.4.2"