Skip to content

fix: don't disable CSRF protection in builds with a non-production NODE_ENV#16313

Merged
teemingc merged 4 commits into
sveltejs:mainfrom
Nic-Polumeyv:fix-csrf-nonprod-node-env
Jul 14, 2026
Merged

fix: don't disable CSRF protection in builds with a non-production NODE_ENV#16313
teemingc merged 4 commits into
sveltejs:mainfrom
Nic-Polumeyv:fix-csrf-nonprod-node-env

Conversation

@Nic-Polumeyv

Copy link
Copy Markdown
Contributor

The NODE_ENV saga continues. Any build where NODE_ENV isn't production currently ships with every origin check compiled out:

// respond.js
if (!DEV) {
	// cross-site remote request check
	// cross-site form submission check (csrf.checkOrigin / trustedOrigins)
}

DEV comes from esm-env, which kit bundles into apps resolved by NODE_ENV, so NODE_ENV=staging vite build produces a deployable server with CSRF protection silently disabled. Vite's docs list non-production builds as a supported workflow, and khromov raised this exact failure mode in #14335 when the gate was added. At the time DEV was assumed to only mean vite dev, which the esm-env consolidation in #14308 no longer guarantees (first leak #15632, fixed by #15852, second leak #16008, fixed by #16023).

This applies the rule from the #15852 body ("reverting to the global constant where we want the code to only run during vite dev ... Every other place that uses DEV is meant to fire warnings ... and that should still happen if the user did NODE_ENV=development vite build") to two sites it missed:

  • the respond.js gate, !DEV to !__SVELTEKIT_DEV__, covering both the form CSRF check and the remote functions origin check that now shares it
  • the live-serving condition in app/server/remote/prerender.js, same one-token swap (prerendered remote functions were served live in these builds)

The three validation DEV sites in respond.js (validateHeaders, page_nodes.validate(), validate_server_exports) are deliberately untouched. They are warning sites and should keep following NODE_ENV per the rule. The check internals are also untouched, so this stays out of the way of the sec-fetch-site idea in #15992.

The new spec in test/build-errors builds a minimal fixture with NODE_ENV=staging, imports the generated server, and asserts a normal GET returns 200 while a forged cross-site form POST returns 403. It fails on main (the POST returns 200) and passes with the fix. The existing basics CSRF tests stay green in both modes, and dev behavior is unchanged.

There are HMR-coupled DEV gates in client.js and the remote query modules from the same class. Left for a follow-up, client.js currently conflicts with #16307.


Please don't delete this checklist! Before submitting the PR, please make sure you do the following:

  • It's really useful if your PR references an issue where it is discussed ahead of time. In many cases, features are absent for a reason. For large changes, please create an RFC: https://github.com/sveltejs/rfcs
  • This message body should clearly illustrate what problems it solves.
  • Ideally, include a test that fails without this PR but passes with it.

Tests

  • Run the tests with pnpm test and lint the project with pnpm lint and pnpm check

Changesets

  • If your PR makes a change that should be noted in one or more packages' changelogs, generate a changeset by running pnpm changeset and following the prompts. Changesets that add features should be minor and those that fix bugs should be patch. Please prefix changeset messages with feat:, fix:, or chore:.

Edits

  • Please ensure that 'Allow edits from maintainers' is checked. PRs without this option may be closed.

@pkg-svelte-dev

pkg-svelte-dev Bot commented Jul 10, 2026

Copy link
Copy Markdown

Install the latest version of @sveltejs/kit from 67459fe:

pnpm add https://pkg.svelte.dev/@sveltejs/kit/c/67459fedcb0f782779b3c84514e84f612fd1a7f2

Open in pkg.svelte.dev: https://pkg.svelte.dev/repos/kit/pr/16313

Note

This PR is from a fork. A maintainer must approve approve each commit before it can be built and installed.

@changeset-bot

changeset-bot Bot commented Jul 10, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 67459fe

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package
Name Type
@sveltejs/kit Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

Comment thread .changeset/tasty-dingos-breathe.md Outdated
Comment thread packages/kit/test/build-errors/security.spec.js Outdated
@Nic-Polumeyv
Nic-Polumeyv requested a review from teemingc July 13, 2026 19:43
Comment thread packages/kit/test/apps/options-2/test/test.js Outdated

@teemingc teemingc left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks!

@teemingc
teemingc merged commit ffa0e3b into sveltejs:main Jul 14, 2026
23 of 24 checks passed
This was referenced Jul 14, 2026
Rich-Harris pushed a commit that referenced this pull request Jul 17, 2026
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @sveltejs/kit@2.70.0

### Minor Changes

- feat: move `defineEnvVars` to `@sveltejs/kit/env`
([#16378](#16378))

### Patch Changes

- fix: enable CSRF protection in builds with a non-production `NODE_ENV`
value ([#16313](#16313))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Rich-Harris pushed a commit that referenced this pull request Jul 17, 2026
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to version-3, this PR
will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

`version-3` is currently in **pre mode** so this branch has prereleases
rather than normal releases. If you want to exit prereleases, run
`changeset pre exit` on `version-3`.

⚠️⚠️⚠️⚠️⚠️⚠️

# Releases
## @sveltejs/kit@3.0.0-next.9

### Major Changes

- breaking: `handle`'s `resolve` is now typed to always return a
`Promise` ([#16352](#16352))

- breaking: replace the `$lib` alias with `#lib` and remove `files.lib`
config. ([#16360](#16360))

- breaking: disallow cross-origin form submissions without a
`Content-Type` header
([#16347](#16347))

- breaking: Server-only directories (`/server/` in the path) are now
treated as server-only everywhere inside the project (except
`src/routes` and the assets directory)
([#16360](#16360))

- breaking: delegate CORS handling to Vite for static directory requests
during development
([#16357](#16357))

### Minor Changes

- feat: reinstate `$env/static/private`, `$env/dynamic/private`,
`$env/static/public`, `$env/dynamic/public` and `$app/environment` as
deprecated aliases for `$app/env/private` `$app/env/public` and
`$app/env` ([#16334](#16334))

### Patch Changes

- perf: cache the default cookie header parse and avoid allocations in
`cookies.get` ([#16341](#16341))

- fix: avoid client-side code being bundled by Cloudflare Wrangler
([#16364](#16364))

- fix: handle rejected streamed server data after delayed loads
([#16268](#16268))

- fix: enable CSRF protection in builds with a non-production `NODE_ENV`
value ([#16313](#16313))
## @sveltejs/package@3.0.0-next.3

### Minor Changes

- feat: transform import aliases into relative imports in files
([#16360](#16360))
## @sveltejs/adapter-node@6.0.0-next.4

### Patch Changes

- fix: correctly bundle entrypoints on Windows
([#16367](#16367))
- Updated dependencies
[[`c1ee782`](c1ee782),
[`1a1b3ea`](1a1b3ea),
[`6423d98`](6423d98),
[`6d1f4f0`](6d1f4f0),
[`5ca9906`](5ca9906),
[`b148d31`](b148d31),
[`5ca9906`](5ca9906),
[`9f3d9bb`](9f3d9bb),
[`7bfd922`](7bfd922),
[`ffa0e3b`](ffa0e3b)]:
  - @sveltejs/kit@3.0.0-next.9
## @sveltejs/enhanced-img@1.0.0-next.2

### Patch Changes

- chore: replace the `$lib` alias with `#lib` in docs
([#16360](#16360))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants