chore(NOJIRA-123): update node to v20 for standards adoption#62
Closed
chore(NOJIRA-123): update node to v20 for standards adoption#62
Conversation
Migrate to a monorepo
Co-authored-by: Scott Kingsley Clark <scott@skc.dev>
…#4201) Co-authored-by: odex <odex_2100@outlook.com>
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
Co-authored-by: Zihua Li <635902+luin@users.noreply.github.com>
⛔ Snyk checks have failed. 1 issues have been found so far.
⛔ code/snyk check is complete. 1 issues have been found. (View Details) |
2bceb2b to
ebe16ca
Compare
tf-security
reviewed
Feb 20, 2025
| const bindings = (this.bindings[evt.key] || []).concat( | ||
| this.bindings[evt.which] || [], | ||
| ); | ||
| const matches = bindings.filter(binding => Keyboard.match(evt, binding)); | ||
| const matches = bindings.filter((binding) => | ||
| Keyboard.match(evt, binding), |
There was a problem hiding this comment.
Regular Expression Denial of Service (ReDoS)
Unsanitized user input from an event flows into match, where it is used to build a regular expression. This may result in a Regular expression Denial of Service attack (reDOS).
Line 187 | CWE-400 | Priority score 760 | Learn more about this vulnerability
Data flow: 4 steps
Step 1 - 2
Step 3 - 4
quill/packages/quill/src/modules/keyboard.ts
Line 187 in ebe16ca
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
Sign up for free
to 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.
No description provided.