CVE-2026-77814 affects the Infinite Image Browsing plugin for Stable Diffusion WebUI. The vulnerability resides in the is_path_trusted function in scripts/iib/api.py, which uses path.startswith(parent_path) without appending a path separator to verify allowed directories. This allows an attacker to bypass access controls by requesting a path whose name merely begins with an allowed directory name (e.g., /data/images_private bypasses a rule for /data/images). Affected files are then served via FileResponse, disclosing sensitive files outside the intended confinement. The access control check is conditionally enabled based on the IIB_ACCESS_CONTROL environment variable or WebUI launch flags (share, ngrok, listen, server_name), meaning network-exposed deployments are most at risk. The fix involves comparing paths against parent_path joined with os.sep to ensure proper directory boundary enforcement. A patch was committed and a pull request was merged addressing this issue.