This repository has been archived by the owner on May 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.dev.yml
182 lines (162 loc) · 4.53 KB
/
docker-compose.dev.yml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
# Self-contained docker-compose that expose web challenges without a reverse-proxy
version: '3'
services:
# Chiabrando - nc lazy-platform.challs.teamitaly.eu 15004
lazy-platform:
build: ./LazyPlatform/src
ports:
- '15004:5555'
restart: unless-stopped
environment:
- FLAG=flag{u53_s3cure_r4nd0m_numb3r_gen3r4t0rs}
# Truong - nc gpocs.challs.teamitaly.eu 15004
gpocs:
build: ./GPOCS/src
ports:
- '15005:5555'
restart: unless-stopped
environment:
- FLAG=flag{c4n_1_us3_fd1sk_t0_p4rt1t10n_my_k3ys?}
# Petroni - nc alice-in-goland.challs.teamitaly.eu 15006
goland:
build: ./Goland/src
ports:
- '15006:6000'
restart: unless-stopped
environment:
- FLAG=flag{s0_h4v3_y0u_f0und_y0ur_w4y_0ut?}
# Dirutigliano - nc pizza-orders.challs.teamitaly.eu 15008
pizza_orders:
build: ./SafePizzaOrders/src
restart: unless-stopped
ports:
- '15008:5000'
# environment:
# - POW=6
# - TIMEOUT_POW=60
# - TIMEOUT_CHALL=120
# Del Gaudio - nc mmm.challs.teamitaly.eu 15009
m3:
build: ./MMM/src
restart: unless-stopped
ports:
- '15009:1337'
# Meinardi - nc atomic-pizza.challs.teamitaly.eu 15010
atomic_pizza:
build: ./AtomicPizza/src
restart: unless-stopped
ports:
- '15010:12321'
# Martino - nc familyrecipes.challs.teamitaly.eu 15011
familyrecipes:
build: ./FamilyRecipes/src
ports:
- '15011:1337'
restart: unless-stopped
volumes:
- ./FamilyRecipes/src/bzImage:/opt/bzImage
- ./FamilyRecipes/src/initramfs.cpio.gz:/opt/initramfs.cpio.gz
- ./FamilyRecipes/src/run.sh:/opt/run.sh
- ./FamilyRecipes/src/run.py:/opt/run.py
# Napolitano - nc imagestore.challs.teamitaly.eu 15000
imagestore:
build: ./ImageStore/src
privileged: true
restart: unless-stopped
ports:
- '15000:5555'
# Napolitano - nc imagestore.challs.teamitaly.eu 15013
imagestore2:
build: ./ImageStore2/src
privileged: true
restart: unless-stopped
ports:
- '15013:5555'
# Giotino - http://flag-proxy.challs.teamitaly.eu
flag-proxy-front:
build: ./FlagProxy/src/server-front
ports:
- '15002:1337'
restart: unless-stopped
environment:
- BACK=flag-proxy-back
- AUTH=hxuing98ungheuitghn4837yhmz9mosur943
flag-proxy-back:
build: ./FlagProxy/src/server-back
restart: unless-stopped
environment:
- FLAG=flag{sanity_check}
# Alberto - http://saffron.challs.teamitaly.eu
# Note: this challenge need a reverse proxy
saffron-blog:
build: ./RedSaffron/src/blog
environment:
- AUTH_HOST_INT=http://uauth.challs.teamitaly.eu
- AUTH_HOST_EXT=http://uauth.challs.teamitaly.eu
- BLOG_HOST=http://saffron.challs.teamitaly.eu
- BOT_URL=http://bot:9999/visit
- FLAG=flag{m0n3y_pr1n7er_g0__BRRRRRRRRR}
ports:
- 15003:3001
saffron-uauth:
build: ./RedSaffron/src/uauth
environment:
- ADMIN_PASSWORD=A9enrScoMkqxZzrbWZBVnQB2H
ports:
- 3000:3000
saffron-bot:
build: ./RedSaffron/src/bot
environment:
- USERNAME=admin
- PASSWORD=A9enrScoMkqxZzrbWZBVnQB2H
- AUTH_URL=http://uauth.challs.teamitaly.eu/auth
# Di Pumpo - http://schei-checker.challs.teamitaly.eu
schei-redis:
image: redis:alpine
command: redis-server --include /usr/local/etc/redis/redis.conf
volumes:
- ./ScheiChecker/src/redis.conf:/usr/local/etc/redis/redis.conf
restart: unless-stopped
networks:
- default
schei-pricescache:
build: ./ScheiChecker/src/prices-cache
volumes:
- ./ScheiChecker/src/prices-cache.config.js:/usr/app/config.js
command: node index.js
restart: unless-stopped
networks:
- default
- internet
schei-reverseproxy:
image: hpello/tcp-proxy
command: schei-backend 8080
ports:
- '15001:8080'
restart: unless-stopped
networks:
- default
- internet
schei-backend:
build: ./ScheiChecker/src/backend
volumes:
- ./ScheiChecker/src/backend.config.js:/usr/app/config.js
restart: unless-stopped
command: node index.js
environment:
- ADMIN_PASSWORD=APAnUXXQxQ7KRRZ
- FLAG=flag{number_!1_f4n_0f_H77P_R3dis}
expose:
- '8080'
networks:
- default
# Demeio - nc elliptic-pizza.challs.teamitaly.eu 15012
elliptic-pizza:
build: ./EllipticPizza/src
ports:
- '15012:5555'
restart: unless-stopped
environment:
- FLAG=flag{1sog3ny_b4s3d_crypt0_w1ll_surv1v3!}
networks:
internet: