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
perf(content-analyzer): ⚡️ Mitigate ReDoS risk in content analysis
- Limit input length to 100,000 characters
- Optimize regex patterns to reduce backtracking and ambiguity
- Avoid .*? and use [\s\S]{0,5000} to cap match length
- Use non-capturing groups and anchor tags more tightly
0 commit comments