forked from PacktPublishing/Software-Security-Testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
68 lines (61 loc) · 1.62 KB
/
Copy pathdocker-compose.yml
File metadata and controls
68 lines (61 loc) · 1.62 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
version: "3.8"
services:
common_web_attacks:
image: cyberacademylabs/common_web_attacks
hostname: common_web_attacks
container_name: common_attacks
ports:
- "80:80"
networks:
lab-net:
ipv4_address: 172.20.0.2
session_puzzling:
image: cyberacademylabs/session_puzzling
hostname: session_puzzle
container_name: session_puzzle
ports:
- "5000:5000"
networks:
lab-net:
ipv4_address: 172.20.0.3
padding_oracle:
image: cyberacademylabs/oracle_padding
hostname: oracle_padding
container_name: oracle_padding
ports:
- "5001:5001"
networks:
lab-net:
ipv4_address: 172.20.0.4
ldap:
image: cyberacademylabs/ldap_injection
hostname: ldap_injection
container_name: ldap_injection
ports:
- "5002:5002"
networks:
lab-net:
ipv4_address: 172.20.0.5
cors:
image: cyberacademylabs/cors_attack
hostname: cors_attack
container_name: cors_attack
ports:
- "5003:5003"
networks:
lab-net:
ipv4_address: 172.20.0.6
url_redirect:
image: cyberacademylabs/url_redirect
hostname: redirect
container_name: url_redirect
ports:
- "5004:5004"
networks:
lab-net:
ipv4_address: 172.20.0.7
networks:
lab-net:
ipam:
config:
- subnet: 172.20.0.0/16