-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
89 lines (81 loc) · 1.49 KB
/
docker-compose.yml
File metadata and controls
89 lines (81 loc) · 1.49 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
pwntools:
build: ./pwntools
volumes:
- ./pwntools/home:/home/pwntools:ro
- ./pwntools/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "9999:1337"
expose:
- "1337"
bof:
build: ./bof
volumes:
- ./bof/home:/home/bof:ro
- ./bof/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10000:1337"
expose:
- "1337"
bof2:
build: ./bof2
volumes:
- ./bof2/home:/home/bof2:ro
- ./bof2/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10001:1337"
expose:
- "1337"
ret2sc:
build: ./ret2sc
volumes:
- ./ret2sc/home:/home/ret2sc:ro
- ./ret2sc/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10002:1337"
expose:
- "1337"
gothijack:
build: ./gothijack
volumes:
- ./gothijack/home:/home/gothijack:ro
- ./gothijack/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10003:1337"
expose:
- "1337"
rop:
build: ./rop
volumes:
- ./rop/home:/home/rop:ro
- ./rop/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10004:1337"
expose:
- "1337"
ret2plt:
build: ./ret2plt
volumes:
- ./ret2plt/home:/home/ret2plt:ro
- ./ret2plt/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10005:1337"
expose:
- "1337"
ret2libc:
build: ./ret2libc
volumes:
- ./ret2libc/home:/home/ret2libc:ro
- ./ret2libc/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10006:1337"
expose:
- "1337"
sort:
build: ./sort
volumes:
- ./sort/home:/home/sort:ro
- ./sort/xinetd:/etc/xinetd.d/xinetd:ro
ports:
- "10007:1337"
expose:
- "1337"