You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a Catastrophic Backtracking issue. It's not technically "infinite", it's just that execution time grows exponentially with the length of the path, such that https://example.com/abc@ validates in reasonable time but https://example.com/abcdefghijklmnopqrstuvwxyz123456789@ crashes.
Any URL that ends with some characters like
@
or$
crashes.Codepen link with an example
Obviously codepen URL does not crash but you can see that the script execution gets stuck.
The text was updated successfully, but these errors were encountered: