CVE-2026-42259

CVE-2026-42259 is a medium-severity open redirect vulnerability in @saltcorn/server (npm), affecting versions < 1.4.6. It is fixed in 1.4.6, 1.5.6, 1.6.0-beta.5.

Summary

Saltcorn validates the post-login dest parameter with a string check that only blocks :/ and //. Because all WHATWG-compliant browsers normalise backslashes (\) to forward slashes (/) for special schemes, a payload such as /\evil.com/path slips through is_relative_url(), is emitted unchanged in the HTTP Location header, and causes the browser to navigate cross-origin to an attacker-controlled domain. The bug is reachable on a default install and only requires a victim who can be tricked into logging in via a crafted Saltcorn URL.

Details

Vulnerable function: packages/server/routes/utils.js:393-395

const is_relative_url = (url) => {
  return typeof url === "string" && !url.includes(":/") && !url.includes("//");
};

The function's intent is to allow only same-origin redirects, but the allow-list only checks for two literal substrings. It does not handle:

  • backslash characters, which WHATWG URL parsing (used by every modern browser) treats as forward slashes for the special schemes http, https, ftp, ws, wss. A URL parser fed /\evil.com/path with a base of http://victim/ resolves to http://evil.com/path.
  • non-http(s): schemes that do not contain :/. The strings javascript:alert(1), data:text/html,..., vbscript:... all pass.

Vulnerable callsite: packages/server/auth/routes.js:1371-1376

} else if (
  (req.body || {}).dest &&
  is_relative_url(decodeURIComponent((req.body || {}).dest))
) {
  res.redirect(decodeURIComponent((req.body || {}).dest));
} else res.redirect("/");

The body's dest is URL-decoded twice (once by body-parser, once by the explicit decodeURIComponent) and the same value is passed to res.redirect. Express 5's res.redirect runs the value through [email protected], whose whitelist character class [^\x21\x23-\x3B\x3D\x3F-\x5F\x61-\x7A\x7C\x7E] includes \x5C (backslash). The backslash is therefore not percent-encoded and ends up verbatim in the Location response header.

PoC

poc.zip

Please extract the uploaded compressed file before proceeding

  1. ./setup.sh
  2. ./poc.sh

Impact

Any user who can be lured into clicking a Saltcorn login URL crafted by the attacker will, after submitting their valid credentials, be redirected to an attacker-controlled origin. The redirect happens under the trusted Saltcorn domain, so the user has no visual cue that they are about to leave the site. Realistic abuse patterns:

  • Credential phishing, the attacker's site renders a forged "session expired, please log in again" prompt to capture the password the user just typed.

Untrusted input controls a URL used for redirection, which can forward users to attacker-controlled sites. Typical impact: phishing and credential harvesting via a trusted domain.

Affected versions

@saltcorn/server (< 1.4.6) @saltcorn/server (>= 1.5.0-beta.0, < 1.5.6) @saltcorn/server (>= 1.6.0-alpha.0, < 1.6.0-beta.5)

Security releases

@saltcorn/server → 1.4.6 (npm) @saltcorn/server → 1.5.6 (npm) @saltcorn/server → 1.6.0-beta.5 (npm)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

See it in your environment

Remediation advice

Upgrade the following packages to resolve this vulnerability:

@saltcorn/server to 1.4.6 or later; @saltcorn/server to 1.5.6 or later; @saltcorn/server to 1.6.0-beta.5 or later

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently Asked Questions

  1. What is CVE-2026-42259? CVE-2026-42259 is a medium-severity open redirect vulnerability in @saltcorn/server (npm), affecting versions < 1.4.6. It is fixed in 1.4.6, 1.5.6, 1.6.0-beta.5. Untrusted input controls a URL used for redirection, which can forward users to attacker-controlled sites.
  2. Which versions of @saltcorn/server are affected by CVE-2026-42259? @saltcorn/server (npm) versions < 1.4.6 is affected.
  3. Is there a fix for CVE-2026-42259? Yes. CVE-2026-42259 is fixed in 1.4.6, 1.5.6, 1.6.0-beta.5. Upgrade to this version or later.
  4. Is CVE-2026-42259 exploitable, and should I be worried? Whether CVE-2026-42259 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  5. What actually determines whether CVE-2026-42259 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  6. How do I fix CVE-2026-42259?
    • Upgrade @saltcorn/server to 1.4.6 or later
    • Upgrade @saltcorn/server to 1.5.6 or later
    • Upgrade @saltcorn/server to 1.6.0-beta.5 or later

Other vulnerabilities in @saltcorn/server

Other vulnerabilities in @saltcorn/server

Stop the waste.
Protect your environment with Kodem.