-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathdocker-compose.yml
79 lines (64 loc) · 1.23 KB
/
docker-compose.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
# Our problems. You can easily test these by running:
# `docker-compose build && docker-compose up -d`
# Web Challengs
zumbo:
build: ./web/zumbo/challenge/service
links: ["zumbo-vault:vault"]
ports: ["8000:5000"]
zumbo-vault:
build: ./web/zumbo/challenge/vault
delphi-status:
build: ./web/delphi-status/challenge
ports:
- 8001:8080
easyauth:
build: ./web/easyauth/challenge
ports:
- 8002:80
year-2000:
build: ./web/the-year-2000/challenge
ports:
- 8003:80
# Pwn problems
shortest:
build: ./pwn/i-am-the-shortest/challenge
ports:
- 9000:8890
b64:
build: ./pwn/b-64-b-tuff/challenge
ports:
- 9001:5757
byteme:
build: ./pwn/byteme/challenge
ports:
- 9002:1942
easyshell:
build: ./pwn/easyshell/challenge
ports:
- 9003:5252
easyshell64:
build: ./pwn/easyshell64/challenge
ports:
- 9004:5253
hashecute:
build: ./pwn/hashecute/challenge
ports:
- 9005:2525
nibbler:
build: ./pwn/nibbler/challenge
ports:
- 9006:1338
# Crypto Challenges
vhash:
build: ./crypto/vhash/challenge
ports:
- 8004:80
vhash-fixed:
build: ./crypto/vhash-fixed/challenge
ports:
- 8005:80
# Misc Challenges
beez-fight:
build: ./misc/beez-fight/challenge
ports:
- 9007:666