Skip to content
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

Trivial RegExp DoS (leading spaces) #598

Open
jasisk opened this issue Aug 12, 2024 · 2 comments
Open

Trivial RegExp DoS (leading spaces) #598

jasisk opened this issue Aug 12, 2024 · 2 comments

Comments

@jasisk
Copy link

jasisk commented Aug 12, 2024

The code block regex allows for a DoS. Can be reproduced with ~100 spaces.

Reproduction in regex debugger.

Reproduce in the playground:

text
                                                                                                                                                      
text
@narcis-fv
Copy link

This is a serious issue, I've been seeing it as well. Any workaround @jasisk until this gets answered?

@narcis-fv
Copy link

I've been removing the leading whitespace, using a regex:

const sanitizedString = inputString.replace(/\s+/g, " ");

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

No branches or pull requests

2 participants