Skip to main content

Eclipse Theia EUVDEUVD-2026-53326

| CVE-2026-60009 HIGH
Path Traversal (CWE-22)
2026-08-05 emo@eclipse.org GHSA-2mw2-h8hj-xpjg
8.8
CVSS 3.1 · Vendor: eclipse
Share

Severity by source

Vendor (eclipse) PRIMARY
8.8 HIGH
AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
vuln.today AI
8.8 HIGH

No authentication required on HTTP path; UI:R reflects mandatory victim page visit; arbitrary overwrite enables full integrity and availability loss, with RCE yielding confidentiality.

3.1 AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
4.0 AV:N/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N

Primary rating from Vendor (eclipse).

CVSS VectorVendor: eclipse

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
Required
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
High

Lifecycle Timeline

3
Patch available
Aug 05, 2026 - 12:01 EUVD
Analysis Generated
Aug 05, 2026 - 11:33 vuln.today
CVE Published
Aug 05, 2026 - 11:16 cve.org
HIGH 8.8

DescriptionCVE.org

In Eclipse Theia versions up to and including 1.73.1, the @theia/filesystem backend binds POST /file-upload in every filesystem-enabled deployment. The handler takes an attacker-supplied absolute path from the multipart uri field and calls fs.move(tmp, target, { overwrite: true }) with no workspace confinement and no authentication. In browser (non-Electron) deployments the connection token is enforced only on WebSocket upgrades; the HTTP middleware in @theia/core re-issues the cookie and calls next() without rejecting tokenless HTTP requests. Because multipart/form-data is a CORS-safelisted request type, a cross-origin web page can trigger the write with no preflight and no credentials, resulting in an unauthenticated arbitrary file write outside the workspace to any absolute path the backend process can write. This can escalate to remote code execution, for example by overwriting a startup-executed file such as ~/.bashrc. Electron mode uses a separate ElectronSecurityToken and is not affected via this path.

AnalysisAI

Unauthenticated arbitrary file write in Eclipse Theia 1.73.1 and earlier (browser-mode deployments) allows any cross-origin web page to overwrite files at any absolute path the backend process can access, with a realistic escalation to remote code execution. The POST /file-upload handler in @theia/filesystem accepts attacker-controlled absolute paths with no workspace boundary check, while a distinct HTTP middleware flaw in @theia/core lets the connection token check pass without rejection for tokenless HTTP requests. Because multipart/form-data is a CORS-safelisted request type, browsers send the exploit request cross-origin with no preflight and no credentials. No public exploit has been identified at time of analysis, and no CISA KEV listing appears in the provided data, but the attack mechanism is straightforward and requires only that a victim visit an attacker-controlled page.

Technical ContextAI

Eclipse Theia is an open-source, extensible cloud and desktop IDE framework widely used as a foundation for browser-based development environments. The vulnerable component is the @theia/filesystem backend route POST /file-upload, which accepts a multipart form body containing a uri field representing the upload destination. The handler calls fs.move(tmp, target, { overwrite: true }) directly on the attacker-supplied path with no canonicalization, no workspace root check, and no path component sanitization - a textbook CWE-22 (Path Traversal / Improper Limitation of a Pathname to a Restricted Directory). A compounding design flaw in @theia/core's HTTP middleware re-issues the session cookie and calls next() without rejecting HTTP requests that lack a valid connection token; token enforcement is applied only on WebSocket upgrade paths, leaving all plain HTTP routes unauthenticated in browser deployments. The CORS bypass vector arises because multipart/form-data is a CORS-safelisted content type per the Fetch specification - browsers send it cross-origin without an OPTIONS preflight and without forwarding cookies, meaning neither CORS policy nor same-origin enforcement provides a backstop. Electron deployments use a distinct ElectronSecurityToken mechanism applied at a different layer and are not affected through this code path.

RemediationAI

The primary fix is to upgrade Eclipse Theia to a patched release beyond 1.73.1; however, an exact confirmed patch version is not available from the provided input data - operators must consult the GitHub advisory at https://github.com/eclipse-theia/theia/security/advisories/GHSA-62f6-wcvg-54h3 for the authoritative fix version and release. Until a patch is applied, the most effective compensating control is to restrict network access to the Theia backend so it is unreachable from untrusted browser contexts - bind the backend to localhost or an internal VLAN, or require a VPN for access; this eliminates the cross-origin attack vector entirely but prevents remote browser-based access to Theia. Placing an authenticating reverse proxy (such as OAuth2 Proxy, Nginx with auth_request, or a zero-trust gateway) in front of all Theia HTTP endpoints will block unauthenticated POST requests, though this requires careful configuration to avoid reintroducing the same HTTP middleware bypass. Blocking or disabling the /file-upload route at the reverse proxy layer is a more surgical workaround but may impair file management functionality. Restricting the operating-system user running the Theia backend to a confined home directory or using a read-only filesystem for sensitive paths (e.g., ~/.bashrc, crontabs, SSH authorized_keys) can limit the blast radius of a successful write. Electron-mode deployments require no immediate action.

Share

EUVD-2026-53326 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy