README.md
Rendering markdown...
version: '3.8'
services:
vulnerable-server:
build: ./server
ports:
- "3000:3000"
networks:
- cve-network
container_name: cve-server
exploit-client:
build: ./exploit
environment:
- TARGET_URL=http://vulnerable-server:3000
depends_on:
- vulnerable-server
networks:
- cve-network
container_name: cve-exploit
networks:
cve-network:
driver: bridge