Cross-site scripting

From Documentation
Revision as of 01:15, 7 September 2018 by Hawk (talk | contribs) (→‎Overview)


Cross-site scripting


Overview

Cross-site scripting (XSS) is a type of computer security vulnerability typically found in web applications that enables malicious attackers to inject client-side script into web pages viewed by other users. Because HTML documents have a flat, serial structure that mixes control statements, formatting, and the actual content, any non-validated user-supplied data included in the resulting page without proper HTML encoding may lead to markup injection.

To prevent from XSS attack, ZK component encodes any value that might be input by a user, such as the value of label and textbox, by escaping & and other unsafe characters. For example, the following statement is totally safe no matter what the value of any_value might be:

<textbox value="${any_value}"/>

However, there are still some notes worth to pay attention to.

The content Property of html and comboitem

The content property of the html and combitem components (Html.setContent(String) and Comboitem.setContent(String)) are designed to allow applications to generate HTML content directly. In other words, it is not encoded. Thus, it is better not to carry the value input by an user, unless it is encoded property. For example, if the value of any_content is, in the following example, generated directly and vulnerable to XSS attack if it is the value provided by an user and without proper encoding.

<html>${any_content}</html>

Using some of the 'Clients' utility methods

As the name says this utility allows more direct 'client' side access. Thus the methods don't encode the strings passed into them to allow formatting of the messages at client side, e.g.:

Clients.showNotification("Successfully processed: <br/>" + myTextbox.getValue());

When displaying user input using methods such as Clients.showBusy(String) or Clients.showNotification(String) ... and especially when dynamically concatenated JS code is executed using Clients.evalJavaScript(String) user input should be escaped carefully.


Sanitize User Input

Apache Commons Lang's StringEscapeUtils can sanitize a user input.

Client-side Actions

The client-side action is not encoded and the options is interpreted as a JSON object. Thus, you could encode it by yourself, if you allow the end user to specify it (which is generally not suggested at all).

Version History

Last Update : 2018/09/07


Version Date Content
     



Last Update : 2018/09/07

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.