5465 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / docker-compose.yml YML
services:
  vuln:
    platform: linux/amd64
    build:
      context: ./vuln
      args:
        LMDEPLOY_VERSION: "0.12.0"
    container_name: cve-2026-33626-vuln
    ports:
      - "8081:8000"
    networks:
      - cve33626_lab
    restart: unless-stopped

  patched:
    platform: linux/amd64
    build:
      context: ./patched
      args:
        LMDEPLOY_VERSION: "0.12.3"
    container_name: cve-2026-33626-patched
    ports:
      - "8082:8000"
    networks:
      - cve33626_lab
    restart: unless-stopped

  internal:
    build:
      context: ./internal
    container_name: cve-2026-33626-internal
    ports:
      - "8090:9000"
    networks:
      - cve33626_lab
    restart: unless-stopped

networks:
  cve33626_lab:
    driver: bridge