This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Testing for User Enumeration and Guessable User Account (OWASP-AT-002)"

From OWASP
Jump to: navigation, search
(Black Box testing and example)
(add analyzing with time delay respons)
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:OWASP Testing Guide v3}}
+
{{Template:OWASP Testing Guide v4}}
  
  
Line 16: Line 16:
 
In a black box testing, we know nothing about the specific application, username, application logic, error messages on login page, or password recovery facilities.
 
In a black box testing, we know nothing about the specific application, username, application logic, error messages on login page, or password recovery facilities.
 
If the application is vulnerable, we receive a response message that reveals, directly or indirectly, some information useful for enumerating users.  
 
If the application is vulnerable, we receive a response message that reveals, directly or indirectly, some information useful for enumerating users.  
<br>
+
 
<br>
+
 
'''HTTP Response message'''
+
===HTTP Response message===
<br>
+
 
 
'''Testing for Valid user/right password'''  
 
'''Testing for Valid user/right password'''  
<br>
+
 
 
Record the server answer when you submit a valid userID and valid password.
 
Record the server answer when you submit a valid userID and valid password.
  
'''Result Expected:'''<br>
+
'''Result Expected:'''
 +
 
 
Using WebScarab, notice the information retrieved from this successful authentication (HTTP 200 Response, length of the response).
 
Using WebScarab, notice the information retrieved from this successful authentication (HTTP 200 Response, length of the response).
 +
  
 
'''Testing for valid user/wrong password''' <br>
 
'''Testing for valid user/wrong password''' <br>
Line 41: Line 43:
  
 
Using WebScarab, notice the information retrieved from this unsuccessful authentication attempt (HTTP 200 Response, length of the response).
 
Using WebScarab, notice the information retrieved from this unsuccessful authentication attempt (HTTP 200 Response, length of the response).
<br>
+
 
'''Testing for a nonexistent username''' <br>
+
 
 +
'''Testing for a nonexistent username'''  
 +
 
 
Now, the tester should try to insert an invalid userID and a wrong password and record the server answer (you should be confident that the username is not valid in the application). Record the error message and the server answer.
 
Now, the tester should try to insert an invalid userID and a wrong password and record the server answer (you should be confident that the username is not valid in the application). Record the error message and the server answer.
  
'''Result Expected:'''<br>
+
'''Result Expected:'''
 +
 
 
If we enter a nonexistent userID, we can receive a message similar to:<br>
 
If we enter a nonexistent userID, we can receive a message similar to:<br>
 
[[Image:Userisnotactive.png]]<br>
 
[[Image:Userisnotactive.png]]<br>
Line 51: Line 56:
 
  Login failed for User foo: invalid Account
 
  Login failed for User foo: invalid Account
  
Generally the application should respond with the same error message and length to the different wrong requests. If you notice that the responses are not the same, you should investigate and find out the key that creates a difference between the 2 responses. For example:  
+
Generally the application should respond with the same error message and length to the different wrong requests. If you notice that the responses are not the same, you should investigate and find out the key that creates a difference between the two responses. For example:  
 
* Client request: Valid user/wrong password --> Server answer:'The password is not correct'
 
* Client request: Valid user/wrong password --> Server answer:'The password is not correct'
 
* Client request: Wrong user/wrong password --> Server answer:'User not recognized'
 
* Client request: Wrong user/wrong password --> Server answer:'User not recognized'
The above responses let the client understand that for the first request we have a valid user name. So we can interact with the application requesting a set of possible userIDs and observing the answer.<br>
+
The above responses let the client understand that for the first request we have a valid user name. So we can interact with the application requesting a set of possible userIDs and observing the answer.
 +
 
 
Looking at the second server response, we understand in the same way that we don't hold a valid username. So we can interact in the same manner and create a list of valid userID looking at the server answers.
 
Looking at the second server response, we understand in the same way that we don't hold a valid username. So we can interact in the same manner and create a list of valid userID looking at the server answers.
<br>
+
 
'''Other ways to enumerate users''' <br>
+
===Other ways to enumerate users===
 +
 
 
We can enumerate users in several ways, such as: <br>
 
We can enumerate users in several ways, such as: <br>
 
'''- Analyzing the error code received on login pages'''<br>
 
'''- Analyzing the error code received on login pages'''<br>
Some web application release a specific error code or message that we can analyze.<br><br>
+
Some web application release a specific error code or message that we can analyze.
  
 
'''- Analyzing URLs, and URLs redirections'''<br>
 
'''- Analyzing URLs, and URLs redirections'''<br>
Line 66: Line 73:
 
  http://www.foo.com/err.jsp?User=baduser&Error=0<br>
 
  http://www.foo.com/err.jsp?User=baduser&Error=0<br>
 
  http://www.foo.com/err.jsp?User=gooduser&Error=2
 
  http://www.foo.com/err.jsp?User=gooduser&Error=2
<br>
+
 
 
As we can see above, when we provide a userID and password to the web application, we see a message indication that an error has occurred in the URL.  
 
As we can see above, when we provide a userID and password to the web application, we see a message indication that an error has occurred in the URL.  
 
In the first case we has provided a bad userID and bad password. In the second, a good user and bad password, so we can identify a valid userID.
 
In the first case we has provided a bad userID and bad password. In the second, a good user and bad password, so we can identify a valid userID.
  
 
'''- URI Probing'''<br>
 
'''- URI Probing'''<br>
Sometimes a web server responds differently if it receives a request for an existing directory or not. For instance in some portals every user is associated with a directory, if we try to access an existing directory we could receive a web server error.
+
Sometimes a web server responds differently if it receives a request for an existing directory or not. For instance in some portals every user is associated with a directory. If we try to access an existing directory we could receive a web server error.
A very common errors that we can receive from web server is:<br>
+
A very common error that we can receive from web server is:<br>
 
   403 Forbidden error code  
 
   403 Forbidden error code  
 
and <br>
 
and <br>
Line 80: Line 87:
 
  http://www.foo.com/account1 - we receive from web server: 403 Forbidden  
 
  http://www.foo.com/account1 - we receive from web server: 403 Forbidden  
 
  http://www.foo.com/account2 - we receive from web server: 404 file Not Found
 
  http://www.foo.com/account2 - we receive from web server: 404 file Not Found
<br>
+
 
 +
 
 
In first case the user exists, but we cannot view the web page, in second case instead the user “account2” doesn’t exist.
 
In first case the user exists, but we cannot view the web page, in second case instead the user “account2” doesn’t exist.
 
Collecting this information we can enumerate the users.
 
Collecting this information we can enumerate the users.
<br><br>
+
 
  
 
'''- Analyzing Web page Titles'''<br>
 
'''- Analyzing Web page Titles'''<br>
Line 91: Line 99:
 
  Invalid authentication
 
  Invalid authentication
  
<br>
+
 
<br>
+
'''- Analyzing message received from recovery facility'''<br>  
'''- Analyzing message received from recovery facilities'''<br>  
+
When we use a recovery facility (i.e. a Forgotten Password function) a vulnerable application might return a message that reveals if a username exists or not.
When we use a recovery facilities the applications that is vulnerable could return a message that reveals if a username exists or not.
 
  
 
For example, message similar to the following:<br>
 
For example, message similar to the following:<br>
  Invalid username: e-mail address are not valid or The specified user was not found
+
  Invalid username: e-mail address is not valid or the specified user was not found.
  
  Valid username: Your recovery password has been successfully sent
+
  Valid username: Your password has been successfully sent to the email address you registered with.
 
<br>
 
<br>
  
Line 107: Line 114:
 
<br>
 
<br>
 
<br>
 
<br>
'''Guessing Users'''<br>
+
'''- Analyzing Time Delay'''  
 +
 
 +
When you test for incorrect user you get faster response than testing correct user
 +
Valid username: page response in 1000 millis
 +
 
 +
invalid username: page response in 80 millis
 +
===Guessing Users===
 
In some cases the userIDs are created with specific policies of administrator or company.   
 
In some cases the userIDs are created with specific policies of administrator or company.   
 
For example we can view a user with a userID created in sequential order:<br>
 
For example we can view a user with a userID created in sequential order:<br>
Line 117: Line 130:
 
R2001 – user 001 for REALM2<br>
 
R2001 – user 001 for REALM2<br>
 
<br>
 
<br>
Other possibilities are userIDs associated with credit card numbers, or in general a numbers with a pattern.
 
 
In the above sample we can create simple shell scripts that compose UserIDs and submit a request with tool like wget to automate a web query to discern valid userIDs.
 
In the above sample we can create simple shell scripts that compose UserIDs and submit a request with tool like wget to automate a web query to discern valid userIDs.
To create a script we can also use Perl and CURL.  
+
To create a script we can also use Perl and CURL.
 +
 
 +
Other possibilities are:
 +
- userIDs associated with credit card numbers, or in general numbers with a pattern.
 +
- userIDs associated with real names, e.g. if Freddie Mercury has a userID of "fmercury", then you might guess Roger Taylor to have the userID of "rtaylor".  
 
    
 
    
Again, we can guess a username from the information received from an LDAP query or from google information gathering for example from a specific domain.
+
Again, we can guess a username from the information received from an LDAP query or from Google information gathering, for example, from a specific domain.
Google can help to find domain users through a specific queries or through a simple shell script or tool.
+
Google can help to find domain users through specific queries or through a simple shell script or tool.
 +
 
 +
 
  
For other information on guessing userIDs see next section 4.5.3 Testing for Guessable (Dictionary) User Account.
 
 
<br><br>
 
<br><br>
'''Attention:''' by enumerating user accounts, you risk locking out accounts after a predefined number of failed probes (based on application policy). Also, sometimes, our IP address can be banned by dynamic rules on the application firewall.
+
'''Attention:''' by enumerating user accounts, you risk locking out accounts after a predefined number of failed probes (based on application policy). Also, sometimes, your IP address can be banned by dynamic rules on the application firewall or Intrusion Prevention System.
  
 
== Gray Box testing and example ==  
 
== Gray Box testing and example ==  

Latest revision as of 12:47, 17 December 2017

This article is part of the new OWASP Testing Guide v4.
Back to the OWASP Testing Guide v4 ToC: https://www.owasp.org/index.php/OWASP_Testing_Guide_v4_Table_of_Contents Back to the OWASP Testing Guide Project: https://www.owasp.org/index.php/OWASP_Testing_Project


Brief Summary

The scope of this test is to verify if it is possible to collect a set of valid usernames by interacting with the authentication mechanism of the application. This test will be useful for the brute force testing, in which we verify if, given a valid username, it is possible to find the corresponding password. Often, web applications reveal when a username exists on system, either as a consequence of a misconfiguration or as a design decision. For example, sometimes, when we submit wrong credentials, we receive a message that states that either the username is present on the system or the provided password is wrong. The information obtained can be used by an attacker to gain a list of users on system. This information can be used to attack the web application, for example, through a brute force or default username/password attack.

Description of the Issue

The tester should interact with the authentication mechanism of the application to understand if sending particular requests causes the application to answer in different manners. This issue exists because the information released from web application or web server when we provide a valid username is different than when we use an invalid one.

In some cases, we receive a message that reveals if the provided credentials are wrong because an invalid username or an invalid password was used. Sometimes, we can enumerate the existing users by sending a username and an empty password.

Black Box testing and example

In a black box testing, we know nothing about the specific application, username, application logic, error messages on login page, or password recovery facilities. If the application is vulnerable, we receive a response message that reveals, directly or indirectly, some information useful for enumerating users.


HTTP Response message

Testing for Valid user/right password

Record the server answer when you submit a valid userID and valid password.

Result Expected:

Using WebScarab, notice the information retrieved from this successful authentication (HTTP 200 Response, length of the response).


Testing for valid user/wrong password
Now, the tester should try to insert a valid userID and a wrong password and record the error message generated by the application.

Result Expected:
From the browser we will expect message similar to the following one:
AuthenticationFailed.png

or something like:
NoConfFound.jpg

against any message that reveals the existence of user, for instance, message similar to:

Login for User foo: invalid password

Using WebScarab, notice the information retrieved from this unsuccessful authentication attempt (HTTP 200 Response, length of the response).


Testing for a nonexistent username

Now, the tester should try to insert an invalid userID and a wrong password and record the server answer (you should be confident that the username is not valid in the application). Record the error message and the server answer.

Result Expected:

If we enter a nonexistent userID, we can receive a message similar to:
Userisnotactive.png
or message like the following one:

Login failed for User foo: invalid Account

Generally the application should respond with the same error message and length to the different wrong requests. If you notice that the responses are not the same, you should investigate and find out the key that creates a difference between the two responses. For example:

  • Client request: Valid user/wrong password --> Server answer:'The password is not correct'
  • Client request: Wrong user/wrong password --> Server answer:'User not recognized'

The above responses let the client understand that for the first request we have a valid user name. So we can interact with the application requesting a set of possible userIDs and observing the answer.

Looking at the second server response, we understand in the same way that we don't hold a valid username. So we can interact in the same manner and create a list of valid userID looking at the server answers.

Other ways to enumerate users

We can enumerate users in several ways, such as:
- Analyzing the error code received on login pages
Some web application release a specific error code or message that we can analyze.

- Analyzing URLs, and URLs redirections
For example:

http://www.foo.com/err.jsp?User=baduser&Error=0
http://www.foo.com/err.jsp?User=gooduser&Error=2

As we can see above, when we provide a userID and password to the web application, we see a message indication that an error has occurred in the URL. In the first case we has provided a bad userID and bad password. In the second, a good user and bad password, so we can identify a valid userID.

- URI Probing
Sometimes a web server responds differently if it receives a request for an existing directory or not. For instance in some portals every user is associated with a directory. If we try to access an existing directory we could receive a web server error. A very common error that we can receive from web server is:

  403 Forbidden error code 

and

  404 Not found error code


Example

http://www.foo.com/account1 - we receive from web server: 403 Forbidden 
http://www.foo.com/account2 - we receive from web server: 404 file Not Found


In first case the user exists, but we cannot view the web page, in second case instead the user “account2” doesn’t exist. Collecting this information we can enumerate the users.


- Analyzing Web page Titles
We can receive useful information on Title of web page, where we can obtain a specific error code or messages that reveal if the problems are on username or password. For instance, if we cannot authenticate to an application and receive a web page whose title is similar to:

Invalid user
Invalid authentication


- Analyzing message received from recovery facility
When we use a recovery facility (i.e. a Forgotten Password function) a vulnerable application might return a message that reveals if a username exists or not.

For example, message similar to the following:

Invalid username: e-mail address is not valid or the specified user was not found.
Valid username: Your password has been successfully sent to the email address you registered with.



- Friendly 404 Error Message
When we request for a user within the directory that does not exist, we don't always receive 404 error code. Instead, we may receive “200 ok” with an image, in this case we can assume that when we receive the specific image the user doesn’t exist. This logic can be applied to other web server response; the trick is a good analysis of web server and web application messages.

- Analyzing Time Delay

When you test for incorrect user you get faster response than testing correct user

Valid username: page response in 1000 millis
invalid username: page response in 80 millis

Guessing Users

In some cases the userIDs are created with specific policies of administrator or company. For example we can view a user with a userID created in sequential order:
CN000100
CN000101
….
Sometimes the usernames are created with a REALM alias and then a sequential numbers:
R1001 – user 001 for REALM1
R2001 – user 001 for REALM2

In the above sample we can create simple shell scripts that compose UserIDs and submit a request with tool like wget to automate a web query to discern valid userIDs. To create a script we can also use Perl and CURL.

Other possibilities are: - userIDs associated with credit card numbers, or in general numbers with a pattern. - userIDs associated with real names, e.g. if Freddie Mercury has a userID of "fmercury", then you might guess Roger Taylor to have the userID of "rtaylor".

Again, we can guess a username from the information received from an LDAP query or from Google information gathering, for example, from a specific domain. Google can help to find domain users through specific queries or through a simple shell script or tool.




Attention: by enumerating user accounts, you risk locking out accounts after a predefined number of failed probes (based on application policy). Also, sometimes, your IP address can be banned by dynamic rules on the application firewall or Intrusion Prevention System.

Gray Box testing and example

Testing for Authentication error messages
Verify that the application answers in the same manner for every client request that produces a failed authentication. For this issue the Black Box testing and Gray Box testing have the same concept based on the analysis of messages or error codes received from web application.
Result Expected:
The application should answer in the same manner for every failed attempt of authentication.
For Example:

Credentials submitted are not valid



References

Tools