Lab: Bypassing GraphQL brute force protections
The user login mechanism for this lab is powered by a GraphQL API. The API endpoint has a rate limiter that returns an error if it receives too many requests from the same origin in a short space of time.
To solve the lab, brute force the login mechanism to sign in as carlos
. Use the list of authentication lab passwords as your password source.
Steps
Open Burp Suite and visit the target website
Send the POST /graphql/v1 Login request to the repeater
In the browser window copy the javascript code that is given in the hint section and execute
Go to the Repeater tab and paste the copied payload inside mutation section
Send the request
In the response tab search for the value true in the bottom search bar
We can see the brute force index which we can now see the bruteforce index in the request tab to view the password of Carlos
Login using Carlos user to solve the lab.
Last updated
Was this helpful?