CVE-2026-45321: TanStack Unspecified Vulnerability
Summary
On 2026-05-11, between approximately 19:20 and 19:26 UTC, 84 malicious versions across 42 @tanstack/ packages were published to the npm registry. The publishes were authenticated via the legitimate GitHub Actions OIDC trusted-publisher binding for TanStack/router, but the publish workflow itself was not modified. The attacker chained three known vulnerability classes — a pullrequesttarget "Pwn Request" misconfiguration, GitHub Actions cache poisoning across the fork↔base trust boundary, and runtime memory extraction of the OIDC token from the Actions runner process — to publish credential-stealing malware under a trusted identity.
Each affected package received exactly two malicious versions, published a few minutes apart.
Impact
A user installing any affected version executes a payload (~2.3 MB obfuscated routerinit.js) at install time that:
- Harvests credentials from common locations: - AWS instance metadata (IMDS) and Secrets Manager - GCP metadata service - Kubernetes service-account tokens - HashiCorp Vault tokens - ~/.npmrc (npm tokens) - GitHub tokens (env vars, gh CLI config, .git-credentials) - SSH private keys (~/.ssh/) - Exfiltrates harvested data over the Session/Oxen messenger file-upload network (filev2.getsession.org, seed{1,2,3}.getsession.org). This is end-to-end encrypted with no attacker-controlled C2, so blocking by IP or domain is the only network mitigation. - Enumerates packages that the victim maintains via registry.npmjs.org/-/v1/search?text=maintainer:<user> and republishes them with the same injection, propagating the compromise across npm.
Any developer or CI environment that ran npm install, pnpm install, or yarn install against an affected version on 2026-05-11 should be considered compromised. All credentials accessible to the install process should be rotated immediately. Cloud audit logs should be reviewed for activity originating from the affected hosts during and after the install window.
Detection
Inspect the published manifest of any pinned @tanstack/ version. Malicious manifests contain this exact optionalDependencies entry:
json "optionalDependencies": { "@tanstack/setup": "github:tanstack/router#79ac49eedf774dd4b0cfa308722bc463cfe5885c" }
To check a version without running install scripts:
bash npm pack @tanstack/<name>@<version> # downloads tarball; does NOT execute lifecycle scripts tar -xzf .tgz grep -A3 optionalDependencies package/package.json ls -la package/routerinit.js # malicious payload, ~2.3 MB, present at package root
The payload file routerinit.js is approximately 2.3 MB of obfuscated JavaScript. It is placed at the tarball root and is intentionally not declared in the package's "files" array, so it does not appear in the package's documented contents.
Mechanism
@tanstack/setup is not a real package on the npm registry. The github:tanstack/router#79ac49ee... specifier resolves to an orphan commit pushed to a fork in the tanstack/router GitHub fork network. GitHub serves commits across the entire fork network for git-URL dependencies, so the attacker did not require write access to TanStack/router itself — only the ability to fork and push to their own fork.
When npm processes the optional dependency, it:
1. Fetches the orphan commit from the fork network. 2. Installs the commit's declared dependencies (which include a real bun binary). 3. Runs the commit's prepare lifecycle script: bun run tanstackrunner.js && exit 1. The trailing exit 1 causes the optional install to fail, after which npm silently discards it — leaving no nodemodules trace. 4. The tanstackrunner.js script in turn executes routerinit.js from the host package's tarball.
Patches
Affected versions are being deprecated on npm with a SECURITY: notice. Where npm policy allows (no existing third-party dependents), affected versions are also being unpublished. The npm security team has been engaged to pull tarballs server-side for versions that cannot be unpublished.
Clean follow-up releases are being prepared. Update to the patched version listed in the affected-products table for each package, then reinstall from a clean lockfile.
Workarounds
Until clean follow-up releases are available:
- Pin every @tanstack/ dependency to a known-good version published before 2026-05-11 19:00 UTC. The last known-good version for most affected packages was published on 2026-03-15. - Delete nodemodules and the lockfile, then reinstall to ensure no transitive dependency resolves to a malicious version. - Configure npm to skip lifecycle scripts on install (npm config set ignore-scripts true) as a temporary defense-in-depth measure. - For CI, audit any pipeline that ran install against @tanstack/ between 19:20 and 19:30 UTC on 2026-05-11. Treat the runner as compromised and rotate any secrets it had access to.
Indicators of compromise
| Indicator | Value | |---|---| | Malicious git ref | github:tanstack/router#79ac49eedf774dd4b0cfa308722bc463cfe5885c | | Fictitious package name | @tanstack/setup | | Payload filename | routerinit.js (~2.3 MB, package root, undeclared in files) | | Helper filename in orphan commit | tanstackrunner.js | | Exfiltration network | filev2.getsession.org, seed1.getsession.org, seed2.getsession.org, seed3.getsession.org | | Second-stage payload URLs | https://litter.catbox.moe/h8nc9u.js, https://litter.catbox.moe/7rrc6l.mjs | | Poisoned cache key | Linux-pnpm-store-6f9233a50def742c09fde54f56553d6b449a535adf87d4083690539f49ae4da11 | | Publish window (UTC) | 2026-05-11 19:20 — 19:26 | | Publish mechanism | GitHub Actions OIDC trusted publisher (oidc:db7d6f54-05d5-412b-8a10-e7a8398b303e) | | Workflow runs | https://github.com/TanStack/router/actions/runs/25613093674 (attempt 4), https://github.com/TanStack/router/actions/runs/25691781302 | | Attacker GitHub accounts | zblgg (id 127806521), voicproducoes (id 269549300) | | Attacker fork (renamed to evade detection) | https://github.com/zblgg/configuration |
Credits
- The security researcher who initially disclosed the vulnerability publicly with detailed analysis at https://github.com/TanStack/router/issues/7383
References
- Public incident tracking issue: https://github.com/TanStack/router/issues/7383 - Related research: - Adnan Khan, "The Monsters in Your Build Cache: GitHub Actions Cache Poisoning" (May 2024) - GitHub Security Lab, "Keeping your GitHub Actions and workflows secure: Preventing Pwn Requests" - StepSecurity, "tj-actions/changed-files action is compromised" (March 2025) — the malicious payload reuses this incident's runner-memory extraction technique verbatim
Other sources
On 2026-05-11, between approximately 19:20 and 19:26 UTC, 84 malicious versions across 42 @tanstack/ packages were published to the npm registry. The publishes were authenticated via the legitimate GitHub Actions OIDC trusted-publisher binding for TanStack/router, but the publish workflow itself was not modified. The attacker chained three known vulnerability classes — a pullrequesttarget "Pwn Request" misconfiguration, GitHub Actions cache poisoning across the fork↔base trust boundary, and runtime memory extraction of the OIDC token from the Actions runner process — to publish credential-stealing malware under a trusted identity. Each affected package received exactly two malicious versions, published a few minutes apart.
— NVD
TanStack contains an unspecified vulnerability that allowed malicious versions of the product to be published to the npm registry to publish credential-stealing malware under a trusted identity.
— CISA
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
npm/@tanstack/zod-adapterto a version that resolves this vulnerability.Fixed in 1.166.16 - Upgrade
Upgrade
npm/@tanstack/vue-start-serverto a version that resolves this vulnerability.Fixed in 1.166.54 - Upgrade
Upgrade
npm/@tanstack/vue-start-clientto a version that resolves this vulnerability.Fixed in 1.166.50 - Upgrade
Upgrade
npm/@tanstack/vue-startto a version that resolves this vulnerability.Fixed in 1.167.65 - Upgrade
Upgrade
npm/@tanstack/vue-router-ssr-queryto a version that resolves this vulnerability.Fixed in 1.166.19 - Upgrade
Upgrade
npm/@tanstack/vue-router-devtoolsto a version that resolves this vulnerability.Fixed in 1.166.20 - Upgrade
Upgrade
npm/@tanstack/vue-routerto a version that resolves this vulnerability.Fixed in 1.169.9 - Upgrade
Upgrade
npm/@tanstack/virtual-file-routesto a version that resolves this vulnerability.Fixed in 1.161.14 - Upgrade
Upgrade
npm/@tanstack/valibot-adapterto a version that resolves this vulnerability.Fixed in 1.166.16 - Upgrade
Upgrade
npm/@tanstack/start-storage-contextto a version that resolves this vulnerability.Fixed in 1.166.42 - Upgrade
Upgrade
npm/@tanstack/start-static-server-functionsto a version that resolves this vulnerability.Fixed in 1.166.48 - Upgrade
Upgrade
npm/@tanstack/start-server-coreto a version that resolves this vulnerability.Fixed in 1.167.37 - Upgrade
Upgrade
npm/@tanstack/start-plugin-coreto a version that resolves this vulnerability.Fixed in 1.169.27 - Upgrade
Upgrade
npm/@tanstack/start-fn-stubsto a version that resolves this vulnerability.Fixed in 1.161.13 - Upgrade
Upgrade
npm/@tanstack/start-client-coreto a version that resolves this vulnerability.Fixed in 1.168.9 - Upgrade
Upgrade
npm/@tanstack/solid-start-serverto a version that resolves this vulnerability.Fixed in 1.166.58 - Upgrade
Upgrade
npm/@tanstack/solid-start-clientto a version that resolves this vulnerability.Fixed in 1.166.54 - Upgrade
Upgrade
npm/@tanstack/solid-startto a version that resolves this vulnerability.Fixed in 1.167.69 - Upgrade
Upgrade
npm/@tanstack/solid-router-ssr-queryto a version that resolves this vulnerability.Fixed in 1.166.19 - Upgrade
Upgrade
npm/@tanstack/solid-router-devtoolsto a version that resolves this vulnerability.Fixed in 1.166.20 - Upgrade
Upgrade
npm/@tanstack/solid-routerto a version that resolves this vulnerability.Fixed in 1.169.9 - Upgrade
Upgrade
npm/@tanstack/router-vite-pluginto a version that resolves this vulnerability.Fixed in 1.166.57 - Upgrade
Upgrade
npm/@tanstack/router-utilsto a version that resolves this vulnerability.Fixed in 1.161.15 - Upgrade
Upgrade
npm/@tanstack/router-ssr-query-coreto a version that resolves this vulnerability.Fixed in 1.168.7 - Upgrade
Upgrade
npm/@tanstack/router-pluginto a version that resolves this vulnerability.Fixed in 1.167.42 - Upgrade
Upgrade
npm/@tanstack/router-generatorto a version that resolves this vulnerability.Fixed in 1.166.49 - Upgrade
Upgrade
npm/@tanstack/router-devtools-coreto a version that resolves this vulnerability.Fixed in 1.167.10 - Upgrade
Upgrade
npm/@tanstack/router-devtoolsto a version that resolves this vulnerability.Fixed in 1.166.20 - Upgrade
Upgrade
npm/@tanstack/router-coreto a version that resolves this vulnerability.Fixed in 1.169.9 - Upgrade
Upgrade
npm/@tanstack/router-clito a version that resolves this vulnerability.Fixed in 1.166.50 - Upgrade
Upgrade
npm/@tanstack/react-start-serverto a version that resolves this vulnerability.Fixed in 1.166.59 - Upgrade
Upgrade
npm/@tanstack/react-start-rscto a version that resolves this vulnerability.Fixed in 0.0.51 - Upgrade
Upgrade
npm/@tanstack/react-start-clientto a version that resolves this vulnerability.Fixed in 1.166.55 - Upgrade
Upgrade
npm/@tanstack/react-startto a version that resolves this vulnerability.Fixed in 1.167.72 - Upgrade
Upgrade
npm/@tanstack/react-router-ssr-queryto a version that resolves this vulnerability.Fixed in 1.166.19 - Upgrade
Upgrade
npm/@tanstack/react-router-devtoolsto a version that resolves this vulnerability.Fixed in 1.166.20 - Upgrade
Upgrade
npm/@tanstack/react-routerto a version that resolves this vulnerability.Fixed in 1.169.9 - Upgrade
Upgrade
npm/@tanstack/nitro-v2-vite-pluginto a version that resolves this vulnerability.Fixed in 1.154.16 - Upgrade
Upgrade
npm/@tanstack/historyto a version that resolves this vulnerability.Fixed in 1.161.13 - Upgrade
Upgrade
npm/@tanstack/eslint-plugin-startto a version that resolves this vulnerability.Fixed in 0.0.8 - Upgrade
Upgrade
npm/@tanstack/eslint-plugin-routerto a version that resolves this vulnerability.Fixed in 1.161.13 - Upgrade
Upgrade
npm/@tanstack/arktype-adapterto a version that resolves this vulnerability.Fixed in 1.166.16 - Configuration
Configure npm to skip lifecycle scripts on install as defense-in-depth: run `npm config set ignore-scripts true`.
npm ignore-scripts = true - Compensating control
Block outbound access from affected/possibly-compromised hosts to the exfiltration endpoints listed in the material: `filev2.getsession.org` and `seed1.getsession.org`, `seed2.getsession.org`, `seed3.getsession.org`. (Material states blocking by IP/domain is the only network mitigation because payload traffic is end-to-end encrypted with no attacker-controlled C2.)
- Operational
If any developer or CI environment ran `npm install`, `pnpm install`, or `yarn install` against an affected `@tanstack/*` version between 2026-05-11 19:20 and 19:30 UTC, treat the environment as compromised and rotate all credentials accessible to the install process immediately (including GitHub tokens, npm tokens in `~/.npmrc`, and any OIDC-related access held by the install/runner).
- Operational
Delete `node_modules` and the lockfile, then reinstall from a clean lockfile to ensure no transitive dependency resolves to a malicious `@tanstack/*` version.
- Operational
Update to the patched version listed in the affected-products table for each `@tanstack/*` package (per the material), then reinstall from a clean lockfile.
Event History
Frequently Asked Questions
What is the severity of CVE-2026-45321?
CVE-2026-45321 is classified as a critical vulnerability due to the unauthorized publication of malicious packages to the npm registry.
How do I fix CVE-2026-45321?
To mitigate CVE-2026-45321, update to the latest versions of affected packages, such as @tanstack/zod-adapter 1.166.16, @tanstack/vue-start-server 1.166.54, and others listed in the advisory.
Which packages are affected by CVE-2026-45321?
CVE-2026-45321 affects various packages under the @tanstack/* namespace, including @tanstack/react-router, @tanstack/vue-router, and more.
How can I identify if my project is impacted by CVE-2026-45321?
Check your project's dependencies for any versions of packages that match those listed in CVE-2026-45321 to determine if your project is impacted.
What are the recommended actions to take after addressing CVE-2026-45321?
After addressing CVE-2026-45321, regularly monitor your project’s dependencies and stay updated on any future advisories related to vulnerabilities.