In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsLearn about Cross-site Scripting vulnerabilities in an interactive lesson.
Start learningUpgrade activeadmin
to version 3.2.2, 4.0.0.beta7 or higher.
Affected versions of this package are vulnerable to Cross-site Scripting through the dynamic setting of form legends in administrative interfaces. An attacker can execute arbitrary scripts in the context of the administrator's session by injecting malicious content into form fields that are reflected in the legend without proper sanitization.
Examples of scenarios for the vulnerability exploitation:
A public web application allows users to create entities with arbitrary names.
Active Admin is used to administrate these entities through a private backend.
The form to edit these entities in the private backend has the following shape (note the dynamic name value dependent on an attribute of the resource):
form do |f| f.inputs name:resource.name do f.input :name f.input :description end
f.actions
end
Notes:
Both form blocks with an implicit or explicit name (i.e., both form resource.name
or form name:resource.name
would suffer from the problem), where the value of the name can be arbitrarily set by non admin users.
Users can workaround this problem without upgrading by explicitly escaping the form name using an HTML escaping utility.
Example:
form do |f| f.inputs name: ERB::Util.html_escape(resource.name) do f.input :name f.input :description end
f.actions
end
A cross-site scripting attack occurs when the attacker tricks a legitimate web-based application or site to accept a request as originating from a trusted source.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, <
can be coded as <
; and >
can be coded as >
; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses <
and >
as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
There are a few methods by which XSS can be manipulated:
Type | Origin | Description |
---|---|---|
Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
?
, &
, /
, <
, >
and spaces to their respective HTML or URL encoded equivalents.