4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / docker-compose.yml YML
version: '3.3'
services:
    nginx-ui:
        stdin_open: true
        tty: true
        container_name: nginx-ui
        restart: always
        environment:
            - TZ=America/New_York
        volumes:
            - '/mnt/user/appdata/nginx:/etc/nginx'
            - '/mnt/user/appdata/nginx-ui:/etc/nginx-ui'
            - '/home/aashay/CVE_2024_49368/www:/var/www'
        ports:
            - 8080:80
            - 8443:443
            - 8000:8000
        image: 'uozi/nginx-ui:v2.0.0-beta.35'
    app:
        build: .
        ports:
        - "10000:10000"
        - "10001:10001"
    nginx-ui-patched:
        stdin_open: true
        tty: true
        container_name: nginx-ui-patched
        restart: always
        environment:
            - TZ=America/New_York
        volumes:
            - '/mnt/user/appdata/nginx-patched:/etc/nginx'
            - '/mnt/user/appdata/nginx-patched-ui:/etc/nginx-ui'
            - '/home/aashay/CVE_2024_49368/patched/www:/var/www'
        ports:
            - 7080:80
            - 7443:443
        image: 'uozi/nginx-ui:v2.0.0-beta.36'