Expected Findings
- Regex `^(a+)+$` is applied to user input with no length cap.
- Backtracking is exponential in input length.
- Same regex is reused on a public signup endpoint.
The email validator uses a regex with catastrophic backtracking, so a crafted input pegs a CPU and ties up the request worker.
CWE-1333
^(a+)+$