XSS, usmagazine.com, Cross Site Scripting, CWE-79, CAPEC-86

CWE List     Full Dictionary View     Development View     Research View     Reports     About     Sources     Process     Documents     Community     Related Activities     Discussion List     Research     CWE/SANS Top 25     CWSS     News     Calendar     Free Newsletter     Compatibility     Program     Requirements     Declarations     Make a Declaration     Contact Us     Search the Site     CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Report generated by XSS.CX at Sat Mar 12 06:29:49 CST 2011.


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

Loading

1. Cross-site scripting (reflected)

2. Cross-domain script include

3. Email addresses disclosed



1. Cross-site scripting (reflected)  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://www.usmagazine.com
Path:   /news

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 c01c6'-alert(1)-'c99a7880ac7 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.

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 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 /news?c01c6'-alert(1)-'c99a7880ac7=1 HTTP/1.1
Host: www.usmagazine.com
Proxy-Connection: keep-alive
Referer: http://www.usmagazine.com/
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
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: subpop=1; __utmz=104302468.1299932839.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-984694609-1299932842475; tmq=kvq%3DD%3Bkvq%3DT%3Bkvq%3D2960%3Bkvq%3D2959%3Bkvq%3D2789%3Bkvq%3D2519%3Bkvq%3D2517%3Bkvq%3D2516%3Bkvq%3D2513%3Bkvq%3D2512%3Bkvq%3D2413%3Bkvq%3D2099%3Bkvq%3D2098%3Bkvq%3D2089%3Bkvq%3D2078%3Bkvq%3D2076%3Bkvq%3D1129%3Bkvq%3D1128%3Bkvq%3D1127%3Bkvq%3D773; stop_mobi=yes; __utma=104302468.1521289829.1299932839.1299932839.1299932839.1; __utmc=104302468; __utmb=104302468.9.9.1299932856405; __ptca=233660737.6LlngFKtMF4R.1299954445.1299954445.1299954445.1; __ptv_3Bh7Mv=6LlngFKtMF4R; __pti_3Bh7Mv=6LlngFKtMF4R; __ptcc=1; __ptcs=233660737.2.10.1299954445; __ptcz=233660737.1299954445.1.0.ptmcsr=(direct)|ptmcmd=(none)|ptmccn=(direct)

Response

HTTP/1.1 200 OK
Server: Apache/2.2.11 (Unix) DAV/2 mod_jk/1.2.28 PHP/5.2.10
X-Powered-By: PHP/5.2.10
Content-Type: text/html; charset=utf-8
X-Varnish: 1531808775
Vary: Accept-Encoding
Date: Sat, 12 Mar 2011 12:27:53 GMT
Connection: close
Set-Cookie: stop_mobi=yes; path=/; domain=usmagazine.com
Content-Length: 82038

<!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/2008/fbml">
<
...[SNIP]...
<img width="0" height="0" src="/capture/newsc01c6'-alert(1)-'c99a7880ac7=1/click.htm?t=1299932872&slug=" />
...[SNIP]...

2. Cross-domain script include  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.usmagazine.com
Path:   /news

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 /news HTTP/1.1
Host: www.usmagazine.com
Proxy-Connection: keep-alive
Referer: http://www.usmagazine.com/
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
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: subpop=1; __utmz=104302468.1299932839.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-984694609-1299932842475; tmq=kvq%3DD%3Bkvq%3DT%3Bkvq%3D2960%3Bkvq%3D2959%3Bkvq%3D2789%3Bkvq%3D2519%3Bkvq%3D2517%3Bkvq%3D2516%3Bkvq%3D2513%3Bkvq%3D2512%3Bkvq%3D2413%3Bkvq%3D2099%3Bkvq%3D2098%3Bkvq%3D2089%3Bkvq%3D2078%3Bkvq%3D2076%3Bkvq%3D1129%3Bkvq%3D1128%3Bkvq%3D1127%3Bkvq%3D773; stop_mobi=yes; __utma=104302468.1521289829.1299932839.1299932839.1299932839.1; __utmc=104302468; __utmb=104302468.9.9.1299932856405; __ptca=233660737.6LlngFKtMF4R.1299954445.1299954445.1299954445.1; __ptv_3Bh7Mv=6LlngFKtMF4R; __pti_3Bh7Mv=6LlngFKtMF4R; __ptcc=1; __ptcs=233660737.2.10.1299954445; __ptcz=233660737.1299954445.1.0.ptmcsr=(direct)|ptmcmd=(none)|ptmccn=(direct)

Response

HTTP/1.1 200 OK
Server: Apache/2.2.11 (Unix) DAV/2 mod_jk/1.2.28 PHP/5.2.10
X-Powered-By: PHP/5.2.10
Content-Type: text/html; charset=utf-8
X-Varnish: 1531807379 1531807225
Vary: Accept-Encoding
Cache-Control: max-age=300
Expires: Sat, 12 Mar 2011 12:32:38 GMT
Date: Sat, 12 Mar 2011 12:27:38 GMT
Connection: close
Set-Cookie: stop_mobi=yes; path=/; domain=usmagazine.com
Content-Length: 82954

<!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/2008/fbml">
<
...[SNIP]...
</script>
<script type="application/javascript" src="http://pixel.quantserve.com/api/segments.json?a=p-41yObSuSE7DTI&callback=qc_results" ></script>
...[SNIP]...
</form>

<script type="text/javascript" src="http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>
...[SNIP]...
<div class="content" id="main_content">
<script src="http://platform.twitter.com/widgets.js" type="text/javascript"></script>
...[SNIP]...
</script><script language="JavaScript" src="http://js.adsonar.com/js/adsonar.js"></script>
...[SNIP]...
</script>
<script type="text/javascript" src="http://edge.quantserve.com/quant.js"></script>
...[SNIP]...
<!-- safecount script -->
<script src="http://content.dl-rms.com/rms/mother/25643/nodetag.js"></script>

<!-- general site-wide iCompass script -->
<script language="javascript" src="http://icompass.insightexpressai.com/716.js"></script>
...[SNIP]...
<!-- amazon content script -->
<script src="//d1nu2rn22elx8m.cloudfront.net/performable/pax/3Bh7Mv.js"
type="text/javascript">
</script>
...[SNIP]...

3. Email addresses disclosed  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://www.usmagazine.com
Path:   /news

Issue detail

The following email address was disclosed in the response:

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

Request

GET /news HTTP/1.1
Host: www.usmagazine.com
Proxy-Connection: keep-alive
Referer: http://www.usmagazine.com/
Cache-Control: max-age=0
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
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: subpop=1; __utmz=104302468.1299932839.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __qca=P0-984694609-1299932842475; tmq=kvq%3DD%3Bkvq%3DT%3Bkvq%3D2960%3Bkvq%3D2959%3Bkvq%3D2789%3Bkvq%3D2519%3Bkvq%3D2517%3Bkvq%3D2516%3Bkvq%3D2513%3Bkvq%3D2512%3Bkvq%3D2413%3Bkvq%3D2099%3Bkvq%3D2098%3Bkvq%3D2089%3Bkvq%3D2078%3Bkvq%3D2076%3Bkvq%3D1129%3Bkvq%3D1128%3Bkvq%3D1127%3Bkvq%3D773; stop_mobi=yes; __utma=104302468.1521289829.1299932839.1299932839.1299932839.1; __utmc=104302468; __utmb=104302468.9.9.1299932856405; __ptca=233660737.6LlngFKtMF4R.1299954445.1299954445.1299954445.1; __ptv_3Bh7Mv=6LlngFKtMF4R; __pti_3Bh7Mv=6LlngFKtMF4R; __ptcc=1; __ptcs=233660737.2.10.1299954445; __ptcz=233660737.1299954445.1.0.ptmcsr=(direct)|ptmcmd=(none)|ptmccn=(direct)

Response

HTTP/1.1 200 OK
Server: Apache/2.2.11 (Unix) DAV/2 mod_jk/1.2.28 PHP/5.2.10
X-Powered-By: PHP/5.2.10
Content-Type: text/html; charset=utf-8
X-Varnish: 1531807379 1531807225
Vary: Accept-Encoding
Cache-Control: max-age=300
Expires: Sat, 12 Mar 2011 12:32:38 GMT
Date: Sat, 12 Mar 2011 12:27:38 GMT
Connection: close
Set-Cookie: stop_mobi=yes; path=/; domain=usmagazine.com
Content-Length: 82954

<!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/2008/fbml">
<
...[SNIP]...
<a href="mailto:hotstuff@usmagazine.com">
...[SNIP]...

Report generated by XSS.CX at Sat Mar 12 06:29:49 CST 2011.