Severity by source
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
Unauthenticated network download route bypasses token auth (PR:N/UI:N/AC:L) leaking file contents, so C:H with no integrity or availability impact.
Primary rating from Vendor (GitHub_M).
CVSS VectorVendor: GitHub_M
Lifecycle Timeline
4DescriptionCVE.org
FreeScout is a free help desk and shared inbox built with PHP's Laravel framework. Prior to version 1.8.221, FreeScout's attachment download route skips token authentication for any attachment whose token_type is set to 1 (TOKEN_TYPE_LEGACY). Because this route is unauthenticated and the file path is deterministic, an unauthenticated remote attacker can download any attachment that was created by an older version of FreeScout without possessing a valid token or session. Version 1.8.221 contains a fix.
AnalysisAI
Broken authentication in FreeScout (a PHP/Laravel self-hosted help desk and shared inbox) prior to version 1.8.221 lets an unauthenticated remote attacker download arbitrary attachments whose token_type is set to 1 (TOKEN_TYPE_LEGACY). The download route bypasses token verification for these legacy attachments, and because file paths are deterministic, any attachment created by an older FreeScout instance can be retrieved without a valid token or session. There is no public exploit identified at time of analysis, but the upstream commit disclosing the exact flawed conditional is public.
Technical ContextAI
FreeScout serves attachments through OpenController::downloadAttachment(), an unauthenticated 'open' route intended to let recipients fetch files via a signed token that hashes the file contents. The vulnerable conditional (if ($token != $attachment->getToken() && $attachment->token_type != Attachment::TOKEN_TYPE_LEGACY)) short-circuits the token check whenever an attachment's token_type equals the legacy constant value of 1, so legacy-typed attachments are served with no token validation at all. This is a classic CWE-287 Improper Authentication case: a backward-compatibility branch that was never removed effectively disables the auth gate for a subset of objects. The affected component is the freescout-help-desk/freescout application (cpe:2.3:a:freescout-help-desk:freescout), and the fix removes the TOKEN_TYPE_LEGACY exemption entirely so every attachment request must present a matching content-hash token.
RemediationAI
Vendor-released patch: upgrade FreeScout to version 1.8.221 or later, which removes the TOKEN_TYPE_LEGACY exemption so every attachment download requires a matching content-hash token (see the advisory at https://github.com/freescout-help-desk/freescout/security/advisories/GHSA-wg74-ww4w-2qpc and fix commit https://github.com/freescout-help-desk/freescout/commit/215241ee2eb73eaa3b47e392599c7dc1b427dc7e). If you cannot upgrade immediately, restrict network exposure of the /storage attachment download route - for example place the instance behind authenticated VPN/SSO or an IP allowlist, or use a reverse proxy rule to require authentication before reaching the open download endpoint; the trade-off is that legitimate token-based public attachment links sent to external requesters will also break. As a data-side control you can migrate or re-tokenize legacy attachments so none retain token_type=1, but this requires care to avoid breaking existing references. Do not rely on obscurity of file paths, since the description states they are deterministic.
File upload bypass in FreeScout 1.8.206 — patch bypass for CVE-2026-27636. PoC and patch available. CVSS 10.0.
Remote code execution in FreeScout prior to version 1.8.206 allows authenticated users to upload `.htaccess` files that
Predictable password reset tokens in FreeScout help desk before 1.8.206. Weak random number generation allows attackers
Anonymous account takeover in FreeScout help desk before 1.8.224 lets an unauthenticated attacker seize the lowest-id ac
FreeScout is a self-hosted help desk and shared mailbox. Rated critical severity (CVSS 9.0), this vulnerability is remot
FreeScout is a self-hosted help desk and shared mailbox. Rated high severity (CVSS 8.0), this vulnerability is remotely
FreeScout is an open source help desk and shared inbox built with PHP. Rated high severity (CVSS 7.1), this vulnerabilit
FreeScout is a free, self-hosted help desk and shared mailbox. Rated medium severity (CVSS 6.3), this vulnerability is r
FreeScout is a free, self-hosted help desk and shared mailbox. Rated medium severity (CVSS 6.1), this vulnerability is r
A stored cross-site scripting (XSS) vulnerability exists in FreeScout help desk software versions 1.8.208 and below, whe
Arbitrary file write in FreeScout (prior to 1.8.215) allows authenticated administrators to achieve remote code executio
Unauthenticated account takeover in FreeScout versions prior to 1.8.217 allows remote attackers to gain permanent access
Same weakness CWE-287 – Improper Authentication
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-46044