Merge branch 'main' of git.leizour.fr:CyberFlingues/arp-spoofing into main
This commit is contained in:
commit
906a9ecb61
34 changed files with 3 additions and 3 deletions
33
apache/compose.yml
Normal file
33
apache/compose.yml
Normal file
|
@ -0,0 +1,33 @@
|
|||
services:
|
||||
webserver:
|
||||
build: ./apache2
|
||||
container_name: webserver
|
||||
ports:
|
||||
- 5000:5000
|
||||
- 80:80
|
||||
- 443:443
|
||||
networks:
|
||||
- mynetwork
|
||||
attacker:
|
||||
build: ./attacker
|
||||
container_name: attacker
|
||||
ports:
|
||||
- 5001:5001
|
||||
networks:
|
||||
- mynetwork
|
||||
privileged: true
|
||||
depends_on:
|
||||
- webserver
|
||||
victim:
|
||||
build: docker/victim
|
||||
container_name: victim
|
||||
networks:
|
||||
- mynetwork
|
||||
depends_on:
|
||||
- webserver
|
||||
- attacker
|
||||
stdin_open: true
|
||||
|
||||
networks:
|
||||
mynetwork:
|
||||
external: false
|
Loading…
Add table
Add a link
Reference in a new issue