- Notifications
You must be signed in to change notification settings - Fork0
chore(deps): update dependency @sveltejs/kit to v2.20.6 [security]#153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Open
renovate wants to merge1 commit intomainChoose a base branch fromrenovate/npm-sveltejs-kit-vulnerability
base:main
Could not load branches
Branch not found:{{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.
Uh oh!
There was an error while loading.Please reload this page.
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
ContributorAuthor
Branch automerge failureThis PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.
|
fdbe58f to3031d3bComparef775efe to563b951Compare8e3fc09 to5efd76fCompare5e43f44 tobb697a6Compare1a7df9a tocd1b259Compare51c4718 to41d82bcCompare8dd6cb9 to9aaa261Compare4b7a24e toea1f73fCompare17fa8f5 to161b438Compare40934f4 tode13458Comparede13458 toaf8a828CompareSign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading.Please reload this page.
This PR contains the following updates:
2.20.5->2.20.6GitHub Vulnerability Alerts
CVE-2025-32388
Summary
Unsanitized search param names cause XSS vulnerability. You are affected if you iterate over all entries of
event.url.searchParamsinside a serverloadfunction. Attackers can exploit it by crafting a malicious URL and getting a user to click a link with said URL.Details
SvelteKit tracks which parameters in
event.url.searchParamsare read inside serverloadfunctions. If the application iterates over the these parameters, theuses.search_paramsarray included in the boot script (embedded in the server-rendered HTML) will have any search param name included in unsanitized form.packages/kit/src/runtime/server/utils.js:150has thestringify_uses(node)function which prints these out.Reproduction
In a
+page.server.jsor+layout.server.js:If a user visits the page in question via a link containing
?</script/><script>window.pwned%3D1</script/>, the</script>will be included verbatim in the payload, causing the embedded script to be executed.It is not necessary to return the parameter value from
loador render it in the page, only to read it (which causes it to be tracked as a dependency) whileloadis running.Impact
Any application that iterates over all values in
event.url.searchParamsin aloadfunction in+page.server.jsor+layout.server.js(directly or indirectly) is vulnerable to XSS.Release Notes
sveltejs/kit (@sveltejs/kit)
v2.20.6Compare Source
Patch Changes
d3300c6a67908590266c363dba7b0835d9a194cf)Configuration
📅Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦Automerge: Enabled.
♻Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated byMend Renovate. View therepository job log.