Summary
CVE-2026-33692 is a high-severity sensitive file exposure vulnerability affecting WWBN AVideo, an open-source video streaming platform, in all versions prior to 29.0. The official Docker Compose configuration mounts the entire project root directory as the Apache document root, causing the .env file — which contains database credentials, admin passwords, and internal network topology — to be served unauthenticated as a plain static file at /.env. The issue has been resolved in version 29.0.
Technical details
- Root cause: The official
docker-compose.ymlbind-mounts the entire AVideo project root as the Apache document root. No.htaccessrule or Apache virtual host directive restricts access to dotfiles, leaving.envdirectly reachable over HTTP. - Trigger conditions: Any AVideo instance deployed using the official Docker Compose method and exposed to the internet is affected. No special preconditions, credentials, or user interaction are required.
- Attack vector: An unauthenticated remote attacker sends a single HTTP GET request to
/.envon the target host. The Apache web server returns the full contents of the environment file as a plain-text response. - Exposed data: The
.envfile contains database hostname and credentials (DB_MYSQL_USER,DB_MYSQL_PASSWORD), the system administrator password (SYSTEM_ADMIN_PASSWORD), TLS certificate file paths, and the internal Docker network subnet (NETWORK_SUBNET). - Impact: Successful exploitation yields direct database access, full administrative panel takeover, and the information required for lateral movement within the Docker network. Confidentiality impact is rated High; no integrity or availability impact is introduced by the exposure itself.
Affected software
- WWBN AVideo — all versions prior to 29.0 deployed via the official Docker Compose configuration
Severity
- CVSS v3.1 Base Score: 7.5 (High)
- Vector:
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Mitigation and recommended actions
- Immediate (patch): Upgrade to AVideo version 29.0, which resolves the misconfiguration.
- Interim workaround (if immediate patching is not possible): Add an Apache
.htaccessrule to block access to all dotfiles:<FilesMatch "^."> Order Allow,Deny Deny from all </FilesMatch>Alternatively, configure the Apache virtual host to explicitly deny access to dotfiles, and ensure the
.envfile is not located within any directory served by Apache. - Review all running Docker-based AVideo deployments to confirm whether
.envis publicly accessible, and rotate any credentials contained in exposed files immediately.
IONIX Status
The IONIX research team is tracking ongoing exploitation attempts and recommends immediate patching. Potentially affected assets are outlined in this post.

