File Browser allows sensitive data to be transferred in URL
Description
File Browser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit files. Prior to version 2.33.9, access tokens are used as GET parameters. The JSON Web Token (JWT) which is used as a session identifier will get leaked to anyone having access to the URLs accessed by the user. This will give an attacker full access to a user's account and, in consequence, to all sensitive files the user has access to. This issue has been patched in version 2.33.9.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
github.com/filebrowser/filebrowser/v2Go | < 2.33.9 | 2.33.9 |
github.com/filebrowser/filebrowserGo | <= 1.11.0 | — |
Affected products
1- Range: < 2.33.9
Patches
1d5b39a14fd3ffix: remove auth token from /api/command
1 file changed · +3 −3
frontend/src/api/commands.ts+3 −3 modified@@ -1,6 +1,6 @@ -import { removePrefix } from "./utils"; -import { baseURL } from "@/utils/constants"; import { useAuthStore } from "@/stores/auth"; +import { baseURL } from "@/utils/constants"; +import { removePrefix } from "./utils"; const ssl = window.location.protocol === "https:"; const protocol = ssl ? "wss:" : "ws:"; @@ -14,7 +14,7 @@ export default function command( const authStore = useAuthStore(); url = removePrefix(url); - url = `${protocol}//${window.location.host}${baseURL}/api/command${url}?auth=${authStore.jwt}`; + url = `${protocol}//${window.location.host}${baseURL}/api/command${url}`; const conn = new window.WebSocket(url); conn.onopen = () => conn.send(command);
Vulnerability mechanics
Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
7- github.com/advisories/GHSA-rmwh-g367-mj4xghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2025-52901ghsaADVISORY
- github.com/filebrowser/filebrowser/commit/d5b39a14fd3fc0d1c364116b41289484df7c27b2ghsax_refsource_MISCWEB
- github.com/filebrowser/filebrowser/releases/tag/v2.33.9ghsax_refsource_MISCWEB
- github.com/filebrowser/filebrowser/security/advisories/GHSA-rmwh-g367-mj4xghsax_refsource_CONFIRMWEB
- github.com/sbaresearch/advisories/tree/public/2025/SBA-ADV-20250327-03_Filebrowser_Sensitive_Data_Transferred_In_URLghsax_refsource_MISCWEB
- pkg.go.dev/vuln/GO-2025-3794ghsaWEB
News mentions
0No linked articles in our index yet.