4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / docker-compose.yml YML
version: '3.8'

services:
  imagenow-vulnerable:
    build:
      context: .
      dockerfile: Dockerfile
    ports:
      - "6000:6000"
    container_name: imagenow-vuln
    # Restart unless stopped to emulate a persistent service that processes manage
    # However, for testing DoS, we might want to observe it crashing. 
    # But usually a service manager would restart it. 
    # For the POC, proving it crashes (restarts) is enough.
    restart: unless-stopped