-
Notifications
You must be signed in to change notification settings - Fork 74
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency path-to-regexp to v6.3.0 [security] #1384
Open
renovate
wants to merge
1
commit into
sepolia
Choose a base branch
from
renovate/npm-path-to-regexp-vulnerability
base: sepolia
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.
Conversation
This file contains 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
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
❌ Deploy Preview for scroll-io failed.
|
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
December 30, 2024 07:15
e4554e2
to
afefcae
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
December 30, 2024 11:04
afefcae
to
2531542
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 8, 2025 02:51
2531542
to
44b42db
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 12, 2025 15:53
44b42db
to
62319b2
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 14, 2025 03:12
62319b2
to
7ef22b7
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 17, 2025 02:01
7ef22b7
to
5d7b91e
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 21, 2025 05:19
5d7b91e
to
573ea5c
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 22, 2025 13:56
573ea5c
to
fa889e3
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 23, 2025 01:27
fa889e3
to
ac1f80d
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 23, 2025 07:56
ac1f80d
to
d0549ef
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 25, 2025 01:03
d0549ef
to
8270d08
Compare
renovate
bot
force-pushed
the
renovate/npm-path-to-regexp-vulnerability
branch
from
January 26, 2025 07:50
8270d08
to
64f5366
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.
This PR contains the following updates:
6.2.1
->6.3.0
GitHub Vulnerability Alerts
CVE-2024-45296
Impact
A bad regular expression is generated any time you have two parameters within a single segment, separated by something that is not a period (
.
). For example,/:a-:b
.Patches
For users of 0.1, upgrade to
0.1.10
. All other users should upgrade to8.0.0
.These versions add backtrack protection when a custom regex pattern is not provided:
They do not protect against vulnerable user supplied capture groups. Protecting against explicit user patterns is out of scope for old versions and not considered a vulnerability.
Version 7.1.0 can enable
strict: true
and get an error when the regular expression might be bad.Version 8.0.0 removes the features that can cause a ReDoS.
Workarounds
All versions can be patched by providing a custom regular expression for parameters after the first in a single segment. As long as the custom regular expression does not match the text before the parameter, you will be safe. For example, change
/:a-:b
to/:a-:b([^-/]+)
.If paths cannot be rewritten and versions cannot be upgraded, another alternative is to limit the URL length. For example, halving the attack string improves performance by 4x faster.
Details
Using
/:a-:b
will produce the regular expression/^\/([^\/]+?)-([^\/]+?)\/?$/
. This can be exploited by a path such as/a${'-a'.repeat(8_000)}/a
. OWASP has a good example of why this occurs, but the TL;DR is the/a
at the end ensures this route would never match but due to naive backtracking it will still attempt every combination of the:a-:b
on the repeated 8,000-a
.Because JavaScript is single threaded and regex matching runs on the main thread, poor performance will block the event loop and can lead to a DoS. In local benchmarks, exploiting the unsafe regex will result in performance that is over 1000x worse than the safe regex. In a more realistic environment using Express v4 and 10 concurrent connections, this translated to average latency of ~600ms vs 1ms.
References
Release Notes
pillarjs/path-to-regexp (path-to-regexp)
v6.3.0
: Fix backtracking in 6.xCompare Source
Fixed
f1253b4
v6.2.2
: Updated READMECompare Source
No API changes. Documentation only release.
Changed
c7ec332
e828000
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 by Mend Renovate. View the repository job log.