5465 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / docker-compose.yml YML
services:
  linux-vuln-server:
    build:
      context: ./linux-vuln-server
    image: cve-2024-4322-linux-vuln-server:local
    ports:
      - "9600:9600"

  linux-patched-server:
    build:
      context: ./linux-patched-server
    image: cve-2024-4322-linux-patched-server:local
    profiles:
      - patched
    ports:
      - "9602:9600"

  analyst:
    build:
      context: ./analyst
    image: cve-2024-4322-analyst:local
    profiles:
      - tools
    depends_on:
      - linux-vuln-server

  windows-vuln-server:
    build:
      context: ./windows-vuln-server
    image: cve-2024-4322-windows-vuln-server:local
    profiles:
      - windows
    ports:
      - "9601:9600"

  windows-patched-server:
    build:
      context: ./windows-patched-server
    image: cve-2024-4322-windows-patched-server:local
    profiles:
      - windows
    ports:
      - "9603:9600"