Summary
CVE-2026-82235 is a Denial of Service vulnerability (CWE-400: Uncontrolled Resource Consumption) affecting File Browser (the filebrowser/filebrowser Go project), through version 2.63.23. The application fails to validate named pipes before opening them in its directory archive and public download handlers, allowing an attacker to trigger blocking open syscalls and exhaust server resources. The flaw carries a CVSS v4.0 base score of 8.2 (High) and is exploitable remotely without authentication against public share links.
Technical details
- Root cause: File Browser’s archive-creation and public download/raw-file handlers open requested files without checking whether they are named pipes (FIFOs) rather than regular files.
- Trigger: An attacker places or references a named pipe within a directory the server can access, then repeatedly requests an archive or public download that includes it.
- Attack vector: Network — exploitable both by authenticated users and by anonymous visitors using a public share link, requiring no user interaction.
- Impact: Each request causes a blocking open syscall on the pipe, pinning a server goroutine indefinitely; repeated requests exhaust available goroutines/connections, leading to denial of service for legitimate users. No confidentiality or integrity impact is reported.
Affected software
- filebrowser/filebrowser (Go module
github.com/filebrowser/filebrowser/v2) — all versions through 2.63.23.
Severity
- CVSS v4.0: 8.2 (High) —
CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N - CVSS v3.1: 5.9 (Medium) —
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
Mitigation and recommended actions
- No patched release is available: the File Browser project has ended active development, with version 2.63.23 confirmed as its final release and the repository scheduled for archival; no further bug or security fixes will be issued.
- Do not expose File Browser instances to the public Internet; restrict access to trusted internal networks or place it behind an authenticating reverse proxy/VPN.
- Disable or restrict public share links and directory archive/download functionality where not strictly required.
- Audit and remove any named pipes (FIFOs) from directories served by File Browser, and prevent users from being able to create them within managed shares.
- Monitor server resource usage (goroutine counts, open connections) for signs of exhaustion, and consider request-rate limiting on archive/download endpoints.
- Given the project is unmaintained, evaluate migrating to an actively maintained alternative file-management solution.

