-
With Burp running, submit an invalid username and password. Highlight the
username
parameter in thePOST /login
request and send it to Burp Intruder. -
On the Payloads tab, notice that the
username
parameter is automatically marked as a payload position. Make sure that the Simple list payload type is selected and add the list of candidate usernames. -
On the Settings tab, under Grep - Extract, click Add. In the dialog that appears, scroll down through the response until you find the error message
Invalid username or password.
. Use the mouse to highlight the text content of the message. The other settings will be automatically adjusted. Click OK and then start the attack. - When the attack is finished, notice that there is an additional column containing the error message you extracted. Sort the results using this column to notice that one of them is subtly different.
- Look closer at this response and notice that it contains a typo in the error message - instead of a full stop/period, there is a trailing space. Make a note of this username.
-
Close the attack and go back to the Positions tab. Insert the username you just identified and add a payload position to the
password
parameter:username=identified-user&password=§invalid-password§
- On the Payloads tab, clear the list of usernames and replace it with the list of passwords. Start the attack.
-
When the attack is finished, notice that one of the requests received a
302
response. Make a note of this password. -
Log in using the username and password that you identified and access the user account page to solve the lab.
Note
It's also possible to brute-force the login using a single cluster bomb attack. However, it's generally much more efficient to enumerate a valid username first if possible.
Lab: Username enumeration via subtly different responses
This lab is subtly vulnerable to username enumeration and password brute-force attacks. It has an account with a predictable username and password, which can be found in the following wordlists:
To solve the lab, enumerate a valid username, brute-force this user's password, then access their account page.