-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
212 lines (191 loc) · 4.43 KB
/
docker-compose.yml
File metadata and controls
212 lines (191 loc) · 4.43 KB
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
services:
# OWASP WebGoat Lab
webgoat:
container_name: webgoat
image: santosomar/webgoat
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.11
# OWASP Juice Shop Lab
juice-shop:
container_name: juice-shop
image: bkimminich/juice-shop
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.12
# Damn Vulnerable Web Application Lab
dvwa:
container_name: dvwa
image: santosomar/dvwa
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.13
# Sci-Fi themed CTF challenge
galactic-archives:
container_name: galactic-archives
image: santosomar/galactic-archives
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.20
# Halo-themed CTF challenge
gravemind:
container_name: gravemind
image: santosomar/gravemind
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.23
# Star Wars themed CTF challenge
y-wing:
container_name: y-wing
image: santosomar/ywing:latest
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.26
# Multi-Vulnerability Gauntlet Lab
hydra-nexus:
container_name: hydra-nexus
build: ./additional-labs/Multi-Vulnerability-Gauntlet
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.30
ports:
- "5010:5010"
# XSS Lab
phantom-script:
container_name: phantom-script
build: ./additional-labs/XSS
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.31
ports:
- "5011:5011"
# SSRF Lab
trojan-relay:
container_name: trojan-relay
build: ./additional-labs/SSRF
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.32
ports:
- "5012:5012"
# SQL Injection Lab
sqli-breach:
container_name: sqli-breach
build: ./additional-labs/SQLi
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.33
ports:
- "5001:5000"
# Command Injection Lab
shell-inject:
container_name: shell-inject
build: ./additional-labs/Command_Injection
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.34
ports:
- "5002:5000"
# Path Traversal Lab
maze-walker:
container_name: maze-walker
build: ./additional-labs/Path_Traversal
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.35
ports:
- "5003:81"
# XXE Lab
entity-smuggler:
container_name: entity-smuggler
build: ./additional-labs/XXE
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.36
ports:
- "5013:5013"
# JWT Vulnerability Lab
token-tower:
build: ./additional-labs/token-tower
container_name: token-tower
ports:
- "5020:5020"
networks:
websploit:
ipv4_address: 10.6.6.40
restart: unless-stopped
# Server-Side Template Injection Lab
render-reign:
build: ./additional-labs/render-reign
container_name: render-reign
ports:
- "5021:5021"
networks:
websploit:
ipv4_address: 10.6.6.41
restart: unless-stopped
# Insecure Deserialization Lab
deserial-gate:
build: ./additional-labs/deserial-gate
container_name: deserial-gate
ports:
- "5022:5022"
networks:
websploit:
ipv4_address: 10.6.6.42
restart: unless-stopped
# DEF CON 31 Challenge
redis-rogue:
container_name: redis-rogue
image: santosomar/dc31_01:latest
platform: linux/amd64
restart: unless-stopped
networks:
websploit:
ipv4_address: 10.6.6.43
# GraphQL Lab
graphql-galaxy:
build: ./additional-labs/GraphQL
container_name: graphql-galaxy
ports:
- "5023:5023"
networks:
websploit:
ipv4_address: 10.6.6.44
restart: unless-stopped
# Prototype Pollution Lab
proto-pollute:
build: ./additional-labs/Prototype_Pollution
container_name: proto-pollute
ports:
- "5004:5004"
networks:
websploit:
ipv4_address: 10.6.6.45
restart: unless-stopped
# Network configuration
networks:
websploit:
driver: bridge
ipam:
config:
- subnet: 10.6.6.0/24
gateway: 10.6.6.1