- The first thing will be to look for possible routes in the API
- use
dirbuster
or - /robots.txt
- use
/api/help
- get the admin's email/api/recover
- get the admin'susername
/api/register
- register a new account/api/login
- getaccess_token
- you will notice the
access_token
is based onusername
andusername
is not unique per account - register a new user with
username
of theadmin
and login, theaccess_token
you get will be able to get you to login asadmin
(with the admin's email)
/api/login
- getaccess_token
of any user- get a list of the
first 5000 common passwords
- use
pyjwt
to readClaimset without Validation
and to brute force the secretkey
.