Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-54088 — filebrowser

🔴 CVSS 9.5 — Critical ✅ No Known Exploit NVD
9.5
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

File Browser: Command Injection via Authentication Hook Shell Substitution (Pre-Authentication RCE)

Overview

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.

Affected Location

  • File: auth/hook.go
  • Function: HookAuth.RunCommand

CVSS v4.0

| 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:None is 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.

CWE

| ID | Name | Role |

|---|---|---|

| [CWE-78](https://cwe.mitre.org/data/definitions/78.html) | 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](https://cwe.mitre.org/data/definitions/88.html) | Improper Neutralization of Argument Delimiters in a Command ('Argument Injection') | Secondary — $USERNAME/$PASSWORD expansion injects additional shell commands |

| [CWE-306](https://cwe.mitre.org/data/definitions/306.html) | Missing Authentication for Critical Function | Secondary — OS command execution is reachable before any authentication is verified |

Technical Details

HookAuth.RunCommand builds the authentication command and substitutes credential values using os.Expand:

```go

// 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

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.

Attack Scenario / Reproduction Steps

1. Admin enables Hook Authentication and sets the command to:

```

sh -c "test $USERNAME = 'admin'"

```

2. An unauthenticated attacker sends a login request (e.g., via curl or the web UI) with:

  • Username: ; id #
  • Password: (any value)

3. The server executes:

```sh

sh -c "test ; id # = 'admin'"

```

4. The 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.

Impact

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:

  • No authentication required — exposed to the entire internet if the service is public-facing.
  • Single request — no setup, n

Affected software

CVE-2026-54088 is recorded against 3 packages.

  • github.com/filebrowser/filebrowser
  • github.com/filebrowser/filebrowser/v2
  • unknown

Timeline and source

Published on 17 July 2026 and last revised on 21 July 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.

References

github.com (Advisory)
nvd.nist.gov (Advisory)

Other advisories for this package

github.com/filebrowser/filebrowser has other advisories on record. If you are patching this one, these are worth checking on the same host:

Details

Severity Critical
CVSS Score 9.5
CVSS Vector N/A
CWE N/A
Public Exploit ✅ No
Source NVD
Published 2026-07-17
Updated 2026-08-20
Modified 2026-07-21
Fix URL N/A

Affected Packages

Software From version Fixed in
github.com/filebrowser/filebrowser
github.com/filebrowser/filebrowser/v2
unknown

Similar Threats

Exploit Protection

Are you running filebrowser?

CVE-2026-54088 carries CVSS 9.5 Critical rating. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-54088 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026