-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
47 lines (40 loc) · 781 Bytes
/
docker-compose.yml
File metadata and controls
47 lines (40 loc) · 781 Bytes
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
services:
ret2win:
build: ./ret2win/chal
ports:
- "5000:5000"
privileged: true
ret2shellcode:
build: ./ret2shellcode/chal
ports:
- "5001:5000"
privileged: true
nx-bypass:
build: ./nx-bypass/chal
ports:
- "5002:5000"
privileged: true
ssp-bypass:
build: ./ssp-bypass/chal
ports:
- "5003:5000"
privileged: true
aslr-bypass:
build: ./aslr-bypass/chal
ports:
- "5004:5000"
privileged: true
format-string-attack:
build: ./format-string-attack/chal
ports:
- "5005:5000"
privileged: true
ret2dlresolve:
build: ./ret2dlresolve/chal
ports:
- "5006:5000"
privileged: true
newbie:
build: ./newbie
volumes:
- ./newbie:/newbie