XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, locators.bankofamerica.com

Report generated by XSS.CX at Tue Sep 27 14:04:17 CDT 2011.

Loading

1. Cross-site scripting (reflected)

XSS in locators.bankofamerica.com, XSS, DORK, GHDB, Cross Site Scripting, CWE-79, CAPEC-86

2. Cookie without HttpOnly flag set

2.1. http://locators.bankofamerica.com/locator/atmbranch/

2.2. http://locators.bankofamerica.com/locator/locator/116__Fifth__Ave_10011_NEW__YORK_NY/bank_branch_locations/

2.3. http://locators.bankofamerica.com/locator/locator/240__Park__Avenue__South_10003_NEW__YORK_NY/bank_branch_locations/action=route

2.4. http://locators.bankofamerica.com/locator/locator/LocatorAction.do

2.5. http://locators.bankofamerica.com/locator/locator/QuickHelp.do

2.6. http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/

2.7. http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/action=route

2.8. http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/

2.9. http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/action=route

2.10. http://locators.bankofamerica.com/locator/locator/InternationalLocAction.do

2.11. http://locators.bankofamerica.com/locator/locator/SessionTimeout.do

2.12. http://locators.bankofamerica.com/locator/locator/branch_and_atm_locations/coverage.html

2.13. http://locators.bankofamerica.com/locator/locator/jsp/content/pushpins_CSS.jsp

2.14. http://locators.bankofamerica.com/locator/locator/jsp/keepAlive.jsp

2.15. http://locators.bankofamerica.com/locator/locator/scripts/StartANewSearch_js.jsp

2.16. http://locators.bankofamerica.com/locator/locator/scripts/footprintMapAndBalloon_js.jsp

2.17. http://locators.bankofamerica.com/locator/locator/scripts/profilePage_js.jsp

3. Cross-domain Referer leakage

3.1. http://locators.bankofamerica.com/locator/locator/LocatorAction.do

3.2. http://locators.bankofamerica.com/locator/locator/PrintDrivingDirections.do

3.3. http://locators.bankofamerica.com/locator/locator/PrintServicesAndHoursPopUp.do

4. Content type incorrectly stated

4.1. http://locators.bankofamerica.com/locator/locator/ProfileUniqueIdAction.do

4.2. http://locators.bankofamerica.com/locator/locator/images/searchInputGlow_home.gif

4.3. http://locators.bankofamerica.com/locator/locator/onlineopinionOO4S/bg.gif

4.4. http://locators.bankofamerica.com/locator/locator/onlineopinionOO4S/bgo.gif



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/10010_New__York_NY/branch_and_atm_locations/locations.html

Issue detail

The value of REST URL parameter 3 is copied into a JavaScript string which is encapsulated in double quotation marks. The payload ccf67"%3balert(1)//c9695dce385 was submitted in the REST URL parameter 3. This input was echoed as ccf67";alert(1)//c9695dce385 in the application's response.

This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.

The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.

Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.

Remediation detail

Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context. There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.

Issue background

Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.

The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.

Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).

The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.

Remediation background

In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.

Request

GET /locator/locator/10010_New__York_NYccf67"%3balert(1)//c9695dce385/branch_and_atm_locations/locations.html HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:58:20 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Content-Language: en-US
Content-Length: 153424
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/html;charset=utf-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US
...[SNIP]...
);
               var previousSuccessfulSearchId = "prevSuccessSearchTextBoxFullAddress";                
               var newValue = document.getElementById('mainSearchTextBoxFullAddress').value;

               var postalCode = "New__York, NYccf67";alert(1)//c9695dce385 10010";
               if(postalCode && postalCode != ""){
                   setSearchFormFullAddress(postalCode);
               }else{                
                   if(newValue && newValue != ""){
                       previousSearchPageState.stateChanged(previousSucces
...[SNIP]...

2. Cookie without HttpOnly flag set  previous  next
There are 17 instances of this issue:

Issue background

If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.

Issue remediation

There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.

You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.



2.1. http://locators.bankofamerica.com/locator/atmbranch/  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/atmbranch/

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/atmbranch/ HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 302 Moved Temporarily
Date: Tue, 27 Sep 2011 18:57:50 GMT
Server: Apache
Set-Cookie: JSESSIONID=D38C85314785C4B4DB4C3D2E6AFB8F53.ftb-web3; Path=/locator/atmbranch
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Pragma: no-cache
cache-control: no-store
Location: http://locators.bankofamerica.com/locator/atmbranch/ListLoadAction.do
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain;charset=ISO-8859-1


2.2. http://locators.bankofamerica.com/locator/locator/116__Fifth__Ave_10011_NEW__YORK_NY/bank_branch_locations/  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/116__Fifth__Ave_10011_NEW__YORK_NY/bank_branch_locations/

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /locator/locator/116__Fifth__Ave_10011_NEW__YORK_NY/bank_branch_locations/ HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:16 GMT
Server: Apache
Set-Cookie: JSESSIONID=61C0166C1BE80E184C3E32D1989A9699.ftb-web2; Path=/locator/locator
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/116__Fifth__Ave_10011_NEW__YORK_NY/bank_branch_locations/?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.3. http://locators.bankofamerica.com/locator/locator/240__Park__Avenue__South_10003_NEW__YORK_NY/bank_branch_locations/action=route  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/240__Park__Avenue__South_10003_NEW__YORK_NY/bank_branch_locations/action=route

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /locator/locator/240__Park__Avenue__South_10003_NEW__YORK_NY/bank_branch_locations/action=route HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:12 GMT
Server: Apache
Set-Cookie: JSESSIONID=3E8639132B44C09ABD0D16D0D063FFE7.ftb-web2; Path=/locator/locator
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/240__Park__Avenue__South_10003_NEW__YORK_NY/bank_branch_locations/action=route?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.4. http://locators.bankofamerica.com/locator/locator/LocatorAction.do  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/LocatorAction.do

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /locator/locator/LocatorAction.do HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; cmTPSet=Y; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:55:32 GMT
Server: Apache
Set-Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; Path=/locator/locator
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/LocatorAction.do?shouldTest=true
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Content-Type: text/plain


2.5. http://locators.bankofamerica.com/locator/locator/QuickHelp.do  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/QuickHelp.do

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /locator/locator/QuickHelp.do?startsWithFilterProperty=searchCustom&openedItemProperty=searchCustom__acceptsDeposits HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:08 GMT
Server: Apache
Set-Cookie: JSESSIONID=DE3E60F60A011A47596552BFBEFD0409.ftb-web3; Path=/locator/locator
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/QuickHelp.do?startsWithFilterProperty=searchCustom&openedItemProperty=searchCustom__acceptsDeposits&shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.6. http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/ HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:11 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.7. http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/action=route  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/action=route

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/action=route HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:11 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/103__E__23rd__St_10010_NEW__YORK_NY/bank_branch_locations/action=route?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.8. http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/ HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:21 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.9. http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/action=route  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/action=route

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/action=route HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:21 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/36__East__14th__Street_10003_NEW__YORK_NY/bank_branch_locations/action=route?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.10. http://locators.bankofamerica.com/locator/locator/InternationalLocAction.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/InternationalLocAction.do

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/InternationalLocAction.do HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:11 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/InternationalLocAction.do?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.11. http://locators.bankofamerica.com/locator/locator/SessionTimeout.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/SessionTimeout.do

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/SessionTimeout.do HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:01 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/SessionTimeout.do?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.12. http://locators.bankofamerica.com/locator/locator/branch_and_atm_locations/coverage.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/branch_and_atm_locations/coverage.html

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/branch_and_atm_locations/coverage.html HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:57:01 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/branch_and_atm_locations/coverage.html?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/html


2.13. http://locators.bankofamerica.com/locator/locator/jsp/content/pushpins_CSS.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/jsp/content/pushpins_CSS.jsp

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/jsp/content/pushpins_CSS.jsp HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: text/css,*/*;q=0.1
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); cmTPSet=Y; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmb=168658492; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); CMAVID=50021315153052143970353; TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; searchPageState=%7B%22mainSearchTextBoxFullAddress%22%3A%22document.getElementById('mainSearchTextBoxFullAddress').value%20%3D%20'10010'%3B%22%2C%22setShouldDoubleClickForNewSearchResults%22%3A%22setShouldDoubleClickForNewSearchResults(false)%22%2C%22showSearchFormFilters%22%3A%22showSearchFormFilters(false%2Cfalse)%3B%22%2C%22searchResultMapChangeEvent%22%3A%22void()%3B%22%7D

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:56:29 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/jsp/content/pushpins_CSS.jsp?shouldTest=true
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Content-Type: text/plain


2.14. http://locators.bankofamerica.com/locator/locator/jsp/keepAlive.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/jsp/keepAlive.jsp

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/jsp/keepAlive.jsp HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:56:55 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/jsp/keepAlive.jsp?shouldTest=true
Content-Language: en-US
Content-Length: 0
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain


2.15. http://locators.bankofamerica.com/locator/locator/scripts/StartANewSearch_js.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/scripts/StartANewSearch_js.jsp

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/scripts/StartANewSearch_js.jsp HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; cmTPSet=Y; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; TLTSID=58B2B07CE93A10E95E3DFB0E01822C10; TLTUID=58B2B07CE93A10E95E3DFB0E01822C10; BOA_0020=20110927:0:O:312dae24-132a-a92c-65f6491312dae241; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:56:39 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/scripts/StartANewSearch_js.jsp?shouldTest=true
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Content-Type: text/plain


2.16. http://locators.bankofamerica.com/locator/locator/scripts/footprintMapAndBalloon_js.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/scripts/footprintMapAndBalloon_js.jsp

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/scripts/footprintMapAndBalloon_js.jsp HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; cmTPSet=Y; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; TLTSID=58B2B07CE93A10E95E3DFB0E01822C10; TLTUID=58B2B07CE93A10E95E3DFB0E01822C10; BOA_0020=20110927:0:O:312dae24-132a-a92c-65f6491312dae241; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:56:39 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/scripts/footprintMapAndBalloon_js.jsp?shouldTest=true
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Content-Type: text/plain


2.17. http://locators.bankofamerica.com/locator/locator/scripts/profilePage_js.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/scripts/profilePage_js.jsp

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.

Request

GET /locator/locator/scripts/profilePage_js.jsp HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/345__Park__Avenue__South_10010_NEW__YORK_NY/bank_branch_locations/
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); cmTPSet=Y; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmb=168658492; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); CMAVID=50021315153052143970353; TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; SURVEY_SHOWN_IN_LAST_6_MONTHS=N; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; searchPageState=%7B%22mainSearchTextBoxFullAddress%22%3A%22document.getElementById('mainSearchTextBoxFullAddress').value%20%3D%20'10010'%3B%22%2C%22setShouldDoubleClickForNewSearchResults%22%3A%22setShouldDoubleClickForNewSearchResults(false)%22%2C%22showSearchFormFilters%22%3A%22showSearchFormFilters(false%2Cfalse)%3B%22%2C%22searchResultMapChangeEvent%22%3A%22void()%3B%22%2C%22prevSuccessSearchTextBoxFullAddress%22%3A%2210010%22%2C%22showStartANewSearchDropDown%22%3A%22showStartANewSearchDropDown(false)%3B%22%2C%22xsearchResultMapPinBalloon%22%3A%22setTimeout(%5C%22clickNumberIcon(2%2C'BC-15732'%2CLigeoAPI.getSearchResultsMap()%2Ctrue%2Cnull)%3B%5C%22%2C1000)%3B%22%7D; profilePageState=; cmRS=&t1=1317149761309&t2=1317149769753&t3=1317149794850&fti=1317149794849&fn=HelpOnlineReferralolbnav_loc_dotcomLocationsFind_ATMs_and_Banking_Centers%28DOTCOM%29_UNDEFINED%3A0%3BHelpOnlineReferralolbnav_loc_dotcomLocationsFind_ATMs_and_Banking_Centers%28DOTCOM%29_UNDEFINED%3A1%3BHelpOnlineReferralolbnav_loc_dotcomLocationsFind_ATMs_and_Banking_Centers%28DOTCOM%29_UNDEFINED%3A2%3B&ac=-1:U&fd=1%3A0%3AfullAddress%3B&uer=&fu=&pi=Help%3AOnlineReferral%3Aolbnav_loc_dotcom%3BLocations%3AFind_ATMs_and_Banking_Centers%28DOTCOM%29&ho=sofa.bankofamerica.com/eluminate%3F&ci=90010394

Response

HTTP/1.1 301 Moved Permanently
Date: Tue, 27 Sep 2011 18:56:39 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Set-Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; Path=/locator/locator
Location: http://locators.bankofamerica.com/locator/locator/scripts/profilePage_js.jsp?shouldTest=true
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 0
Content-Type: text/plain


3. Cross-domain Referer leakage  previous  next
There are 3 instances of this issue:

Issue background

When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.

If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.

You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.

Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.

Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.

Issue remediation

The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.


3.1. http://locators.bankofamerica.com/locator/locator/LocatorAction.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/LocatorAction.do

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /locator/locator/LocatorAction.do?shouldTest=true HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; cmTPSet=Y; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:55:34 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 93429
Content-Type: text/html;charset=UTF-8


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images//borders/lightGreyDivider.png" width="370" height="1" alt="" />

<div class="linkText">
...[SNIP]...
</a>

       <img src="https://shared.via.infonow.net/images/borders/dottedDividerVert.png" width="1" height="16" class="leftRight12" alt="" />


<div id="startANewSearchContainerOpen" class="startANewSearchContainerOpen" style="display:none;">
...[SNIP]...
<div id="startANewSearchContainerOpenBackground" style="display:none;">
<img src="https://shared.via.infonow.net/images/borders/startNewSearchInnerBox_Top.png" width="239" height="6" class="innerTop" alt="" />

<div class="startNewSearchInnerBox_BACK startNewSearchInnerBox_BACKCustom">
...[SNIP]...
</div>

<img src="https://shared.via.infonow.net/images/borders/startNewSearchInnerBox_Bottom.png" width="239" height="6" alt="" /><br />
...[SNIP]...
<br />
<a rel="nofollow" href="http://www.totalmerrill.com/TotalMerrill/system/ContactMLFindBranchOrFAModal.aspx?modal=findBranch" class="secondaryLinks">
Merrill Lynch locations
</a>
...[SNIP]...
<h3><a rel="nofollow" href="http://www.totalmerrill.com/TotalMerrill/system/ContactMLFindBranchOrFAModal.aspx?modal=findBranch" class="secondaryLinks indent10">Merrill Lynch locations</a>
...[SNIP]...
<div class="footerOuterLeftPadding">

<img id="footerFold" src="https://shared.via.infonow.net/images//borders/lightGreyDivider.png" width="967" height="1" class="pushDown40" alt="" /><br/>
...[SNIP]...
<div class="footerOuterLeftPadding">

<img id="footerFoldAbsolute" src="https://shared.via.infonow.net/images//borders/lightGreyDivider.png" width="967" height="1" class="pushDown40" alt="" /><br/>
...[SNIP]...
<div id="footprint-down" class="none">
           <img id="footprint_imagemap" alt="United States Map" src="https://shared.via.infonow.net/images/transparent.gif" usemap="#footprint_Map" />
           <div id="footprint-balloonContent">
...[SNIP]...
<a href="javascript: void(0);" onclick="footprintMapAction('none', 'd');">
                       <img id="closeX" src="https://shared.via.infonow.net/images/transparent.gif" width="18" height="18" alt="Close this balloon" />
                   </a>
...[SNIP]...
<div id="map-copyright-div">

<a id="map-copyright"
href="http://via.infonow.net/map_terms.jsp?client=bofa&amp;tool=gen3locator"
onclick="window.open('http://via.infonow.net/map_terms.jsp?client=bofa&amp;tool=gen3locator','termsWindow','scrollbars,menubar=no,titlebar=no,height=280,width=500');return false;"
rel="nofollow">

All rights reserved. Use subject to License/Copyright.
</a>
...[SNIP]...
<div class="tripleBoxWrapper">
<img src="https://shared.via.infonow.net/images/borders/tripleBoxTop.png" width="476" height="7" class="pullTopDown3" alt="" />
<div class="tripleDivWrapper">
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/tripleBoxBottom.png" width="476" height="7" alt="" />
</div>
...[SNIP]...
<body> tag, as close to the beginning of it as possible
    Creation Date:09/02/2010
-->


<IFRAME src="https://fls.doubleclick.net/activityi;src=1359940;type=check839;cat=atmfi545;ord=2.0658653314498232E12?" width="1" height="1" frameborder="0" style="visibility:hidden;display:none"></IFRAME>
...[SNIP]...

3.2. http://locators.bankofamerica.com/locator/locator/PrintDrivingDirections.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/PrintDrivingDirections.do

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /locator/locator/PrintDrivingDirections.do?id=BC-15732&featureNumber=1&profile=true&action=route&doPrint=true HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:57:48 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/html;charset=UTF-8
Content-Length: 24211


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


<html xmlns="http://www.w3.
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/printDestinationBox_Top.png" width="560" height="7" class="pullTopDown8" alt="" />
<div id="routePrintSummaryBlock" class="printDestinationBox_PAIR_BACK overflowHidden">
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/printDestinationBox_Bottom.png" width="560" height="7" alt="" />
</div>
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/notesSmallBox_Top.png" width="235" height="7" class="pullTopDown3" alt="" />
<div class="notesSmallBox_BACK overflowHidden">
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/notesSmallBox_Bottom.png" width="235" height="7" alt="" />
</div>
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/printMyNotesBox_Top.png" width="828" height="6" class="pullTopDown3" alt="" />
<div class="printDirectionsLRGBox_BACK overflowHidden">
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/printMyNotesBox_Bottom.png" width="828" height="6" alt="" />


<!--END INNER BOX INSIDE TABBED BOX-->
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/printMapBox_Top.png" width="399" height="6" class="pullTopDown3" alt="" />
<div class="printDirectionsMapBox_BACK overflowHidden">
...[SNIP]...
<div id="map-copyright-div">

<a id="map-copyright"
href='http://via.infonow.net/map_terms.jsp?client=bofa&amp;tool=gen3locator'
onclick="window.open('http://via.infonow.net/map_terms.jsp?client=bofa&amp;tool=gen3locator','termsWindow','scrollbars,menubar=no,titlebar=no,height=280,width=500');return false;"
target="termsWindow"
rel="nofollow">

All rights reserved. Use subject to License/Copyright.
</a>
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/printMapBox_Bottom.png" width="399" height="6" alt="" />

</div>
...[SNIP]...

3.3. http://locators.bankofamerica.com/locator/locator/PrintServicesAndHoursPopUp.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/PrintServicesAndHoursPopUp.do

Issue detail

The page was loaded from a URL containing a query string:The response contains the following links to other domains:

Request

GET /locator/locator/PrintServicesAndHoursPopUp.do?featureNumber=1&profile=true&action=drill&doPrint=true HTTP/1.1
Host: locators.bankofamerica.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:57:47 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/html;charset=UTF-8
Content-Length: 15464


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">


<html xmlns="http://www.w3.org/1999/xht
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/printMapBox_Top.png" width="399" height="6" class="pullTopDown3" alt="" />
<div class="printDirectionsMapBox_BACK overflowHidden">
...[SNIP]...
<div id="map-copyright-div">

<a id="map-copyright"
href="http://via.infonow.net/map_terms.jsp?client=bofa&tool=gen3locator"
onclick="window.open('http://via.infonow.net/map_terms.jsp?client=bofa&tool=gen3locator','termsWindow','scrollbars,menubar=no,titlebar=no,height=280,width=500');return false;"
target="termsWindow"
rel="nofollow">

All rights reserved. Use subject to License/Copyright.
</a>
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/printMapBox_Bottom.png" width="399" height="6" alt="" />

</div>
...[SNIP]...
<br/>

<img src="https://shared.via.infonow.net/images/borders/notes417Box_Top.png" width="417" height="7" class="pullTopDown3" alt="" />
<div class="notesSmallBox_PrintServices overflowHidden">
...[SNIP]...
</div>
<img src="https://shared.via.infonow.net/images/borders/notes417Box_Bottom.png" width="417" height="7" alt="" />
</div>
...[SNIP]...

4. Content type incorrectly stated  previous
There are 4 instances of this issue:

Issue background

If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.

In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.


4.1. http://locators.bankofamerica.com/locator/locator/ProfileUniqueIdAction.do  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/ProfileUniqueIdAction.do

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain plain text.

Request

GET /locator/locator/ProfileUniqueIdAction.do?unique_id=ATM-31691? HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Content-type: application/x-www-form-urlencoded
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/10010_New__York_NYccf67%22%3balert(1)//c9695dce385/branch_and_atm_locations/locations.html
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: testCookie=INFONOW_TEST_COOKIE_SUPPORT; JSESSIONID=15290CFF756CB3DA9F7D569075B0C3EA.ftb-web6; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); cmTPSet=Y; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); CMAVID=50021315153052143970353; TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; SURVEY_SHOWN_IN_LAST_6_MONTHS=N; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; __utmb=168658492; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; searchPageState=%7B%22mainSearchTextBoxFullAddress%22%3A%22document.getElementById('mainSearchTextBoxFullAddress').value%20%3D%20%5C%22New%20York%2C%20NYccf67%5C%22%3B%22%2C%22setShouldDoubleClickForNewSearchResults%22%3A%22setShouldDoubleClickForNewSearchResults(false)%22%2C%22showSearchFormFilters%22%3A%22showSearchFormFilters(false%2Cfalse)%3B%22%2C%22searchResultMapChangeEvent%22%3A%22void()%3B%22%2C%22prevSuccessSearchTextBoxFullAddress%22%3A%2210010%22%2C%22showStartANewSearchDropDown%22%3A%22showStartANewSearchDropDown(false)%3B%22%2C%22xsearchResultMapPinBalloon%22%3A%22void()%3B%22%7D; profilePageState=

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 19:00:23 GMT
Server: Apache
Pragma: no-cache
cache-control: no-store
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
Content-Language: en-US
Vary: Accept-Encoding,User-Agent
Content-Length: 3
Content-Type: text/html;charset=ISO-8859-1

OK

4.2. http://locators.bankofamerica.com/locator/locator/images/searchInputGlow_home.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/images/searchInputGlow_home.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /locator/locator/images/searchInputGlow_home.gif HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; cmTPSet=Y; throttle_value=72; NSC_CbolPgBnfsjdb=445b32097852; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmb=168658492; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:55:43 GMT
Server: Apache
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
ETag: W/"328-1314740806000"
Last-Modified: Tue, 30 Aug 2011 21:46:46 GMT
Content-Language: en-USFB42B9DE8CA197D4159816C8
Content-Length: 328
Content-Type: image/gif;charset=ISO-8859-1

.PNG
.
...IHDR................1...`PLTE..................wwwiii......{{{...............|||..............................................
.....    vpAg.................IDATh.....0....D..M......``......
...[SNIP]...

4.3. http://locators.bankofamerica.com/locator/locator/onlineopinionOO4S/bg.gif  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/onlineopinionOO4S/bg.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /locator/locator/onlineopinionOO4S/bg.gif HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); cmTPSet=Y; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmb=168658492; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); CMAVID=50021315153052143970353; throttle_value=72; TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; NSC_CbolPgBnfsjdb=445b32097852

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:55:49 GMT
Server: Apache
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
ETag: W/"492-1314740806000"
Last-Modified: Tue, 30 Aug 2011 21:46:46 GMT
Content-Language: en-US
Content-Length: 492
Content-Type: image/gif;charset=ISO-8859-1

.PNG
.
...IHDR....................    vpAg.........\6."....IDATx....M.@..a.kt.'...7......~.'v<..C.x....0...(........R..L.iz..3..o..J.C.qT......Q.X..=.8...Z.....S.c.......@...]..YG........qfdi.{.....
...[SNIP]...

4.4. http://locators.bankofamerica.com/locator/locator/onlineopinionOO4S/bgo.gif  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://locators.bankofamerica.com
Path:   /locator/locator/onlineopinionOO4S/bgo.gif

Issue detail

The response contains the following Content-type statement:The response states that it contains a GIF image. However, it actually appears to contain a PNG image.

Request

GET /locator/locator/onlineopinionOO4S/bgo.gif HTTP/1.1
Host: locators.bankofamerica.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1
Accept: */*
Referer: http://locators.bankofamerica.com/locator/locator/LocatorAction.do
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: JSESSIONID=F15D1F8AB1FB0322AF48386DCF489405.ftb-web1; testCookie=INFONOW_TEST_COOKIE_SUPPORT; __utma=210832650.108559369.1317146892.1317146892.1317146892.1; __utmc=210832650; __utmz=210832650.1317146892.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); cmTPSet=Y; TLTSID=7E3E9B64E93810E950C6EEAAE51BD6EE; TLTUID=7E3E9B64E93810E950C6EEAAE51BD6EE; BOA_0020=20110927:0:O:7779c380-132a-a87a-48565017779c3801; ORIGINATIONS.BANKOFAMERICA.COM=NVH9yAytgRfRe9B2T5E5DnJSp5UQQCJEe1V1MMuuqFhMv1nEWYrMuP+/kgpQ40hdqnZF9hug8mIY3QPj7KEn0YgTL04RIZV+a0Ajm1e9+GzdAk9f+cJSOsx4R41b1wwCGMdnxtGnFYcLLS4d0z1cVF6+Eadv4AI9+bNPv01vshxlZTgPSXNNZwboayRUVJc8EVeQMImPZgUdhtBeLKW4JXjsjhtMBpdvWxy/US6Q2nS88C2FauT066xHiMY2SsLR3p7WQpFbtuUl0vJm5f5Gt1GoVOJnXXfIQtYGZ88/jMIUeDn0VIPIj14ESopT5jmKrcAXb7xIj67CZIi6U/51S8dduhgi0ysC3fSV1SfAcARcnDbZ6BQQfHYxACjVEeuI5aZ/E6XgzlzfXowxgSiv33laZECGFyhCxSQPG/VHBg+ncz9NKOm3bqtUoxC7mmihAedmYO2XudnvWKZc6jz9I/TVSJNdSVwZpCBsTmbJnhVSNVJgG7SH5LGXoyywRrSog5d9VAHEw/bmPePxAOUiC/zAmxxDcqBVN6aEqZJdVlZLMiG6HpVXshVGonkEv5J5k14qsR79fahnqulfNjKlqxpBfdqqdFp9Kx7YqmM+dM5ofD3FgqVRWmMk59qcGkDn; __utma=168658492.63799187.1317149761.1317149761.1317149761.1; __utmb=168658492; __utmc=168658492; __utmz=168658492.1317149761.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); CMAVID=50021315153052143970353; throttle_value=72; TCID=0007b16b-f1e9-be5a-87b0-cd4a0000001e; NSC_CbolPgBnfsjdb=445b32097852

Response

HTTP/1.1 200 OK
Date: Tue, 27 Sep 2011 18:55:49 GMT
Server: Apache
P3P: CP='ALL ADM DEV PSAi COM OUR OTRo STP IND ONL'
ETag: W/"609-1314740806000"
Last-Modified: Tue, 30 Aug 2011 21:46:46 GMT
Content-Language: en-US
Content-Length: 609
Content-Type: image/gif;charset=ISO-8859-1

.PNG
.
...IHDR....................    vpAg.........\6."....IDATx...KN.1.EQ.......h    !......@(?....Z./.J:q.w...8.I..........|
....E... .V.........y.o,-.K*MN.[L.A......C....8Q..=.j..-<."H.o).=..\.4....C
...[SNIP]...

Report generated by XSS.CX at Tue Sep 27 14:04:17 CDT 2011.