• No results found

Identify Application Entry Points (EFF-IG-003)

2.1 Information Gathering

2.1.3 Identify Application Entry Points (EFF-IG-003)

SUMMARY

Enumerating the application and its attack surface is a key precursor before any thorough testing can be undertaken, as it allows the tester to identify likely areas of weakness. This section aims to help identify and map out areas within the application that should be investigated once enumeration and mapping has been completed.

DESCRIPTION OF THE ISSUE

Before any testing begins, always get a good understanding of the application and how the user/browser communicates with it. As you walk through the application, pay special attention to all HTTP requests (GET and POST Methods, also known as Verbs), as well as every parameter and form field that are passed to the application. In addition, pay attention to when GET requests are used and when POST requests are used to pass parameters to the application. It is very common that GET requests are used, but when sen- sitive information is passed, it is often done within the body of a POST request. Note that to see the pa- rameters sent in a POST request, you will need to use a tool such as an intercepting proxy (for example, OWASP's WebScarab) or a browser plug-in. Within the POST request, also make special note of any hid- den form fields that are being passed to the application, as these usually contain sensitive information, such as state information, quantity of items, the price of items, that the developer never intended for you to see or change.

It is very useful to use an intercepting proxy and a spreadsheet for this stage of the testing. The proxy will keep track of every request and response between you and the application as you walk through it. Addi- tionally, at this point, testers usually trap every request and response so that they can see exactly every header, parameter, etc. that is being passed to the application and what is being returned. As you walk through the application, take note of any interesting parameters in the URL, custom headers, or body of

EFF Application Penetration Testing Page 42 of 133

the requests/responses, and save them in your spreadsheet. The spreadsheet should include the page you requested (it might be good to also add the request number from the proxy, for future reference), the interesting parameters, the type of request (POST/GET), if access is authenticat- ed/unauthenticated, if SSL is used, if it's part of a multi-step process, and any other relevant notes. Once you have every area of the application mapped out, then you can go through the application and test each of the areas that you have identified and make notes for what worked and what didn't work. The rest of this guide will identify how to test each of these areas of interest, but this section must be undertaken before any of the actual testing can commence.

Below are some points of interests for all requests and responses. Within the requests section, focus on the GET and POST methods, as these appear the majority of the requests. Note that other methods, such as PUT and DELETE, can be used.

Often, these more rare requests, if allowed, can expose vulnerabilities. There is a special section in this guide dedicated for testing these HTTP methods.

Requests:

• Identify where GETs are used and where POSTs are used.

• Identify all parameters used in a POST request (these are in the body of the request) • Within the POST request, pay special attention to any hidden parameters. When a

POST is sent all the form fields (including hidden parameters) will be sent in the body of the HTTP message to the application. These typically aren't seen unless you are us- ing a proxy or view the HTML source code. In addition, the next page you see, its data, and your access can all be different depending on the value of the hidden parame- ter(s).

• Identify all parameters used in a GET request (i.e., URL), in particular the query string (usually after a ? mark).

• Identify all the parameters of the query string. These usually are in a pair format, such as foo=bar. Also note that many parameters can be in one query string such as sepa- rated by a &, ~, :, or any other special character or encoding.

• A special note when it comes to identifying multiple parameters in one string or within a POST request is that some or all of the parameters will be needed to execute your at- tacks. You need to identify all of the parameters (even if encoded or encrypted) and identify which ones are processed by the application. Later sections of the guide will identify how to test these parameters, at this point, just make sure you identify each one of them.

• Also pay attention to any additional or custom type headers not typically seen (such as debug=False)

Responses:

• Identify where new cookies are set (Set-Cookie header), modified, or added to.

• Identify where there are any redirects (300 HTTP status code), 400 status codes, in particular 403 Forbidden, and 500 internal server errors during normal responses (i.e., unmodified requests).

EFF Application Penetration Testing Page 43 of 133

• Also note where any interesting headers are used. For example, "Server: BIG-IP" indicates that the site is load balanced. Thus, if a site is load balanced and one server is incorrectly configured, then you might have to make multiple requests to access the vulnerable server, depending on the type of load balancing used.