Apache2 Undefined Charset UTF-7 XSS Vulnerability - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T05:01:48Zhttp://stackoverflow.com/feeds/question/446501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/446501/apache2-undefined-charset-utf-7-xss-vulnerability0Apache2 Undefined Charset UTF-7 XSS VulnerabilityMohit Nanda2009-01-15T12:09:32Z2009-02-10T07:14:59Z
<p>Does anyone have an idea how can I fix this vulnerability in <strong>Apache 2.2.4</strong>, without upgrading the Web Server?</p>
<p>This is what I found about it on the net at <a href="http://securityreason.com/achievement_securityalert/46" rel="nofollow"><strong>SecurityReason</strong></a>. The fix suggested by them is to upgrade it to version 2.2.6. But the server is live and upgrading t is the last resort.</p>
<blockquote>
<p><strong>Apache2 XSS Undefined Charset UTF-7 XSS Vulnerability</strong></p>
<p>The XSS(UTF7) exist in <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html" rel="nofollow">mod_autoindex.c</a>
. Charset is not defined and we can
provide XSS attack using "P" option
available in apache 2.2.4 by setting
Charset to UTF-7.</p>
<p>"P=pattern lists only files matching
the given pattern"</p>
</blockquote>
<p>Please suggest a solution for this.</p>
http://stackoverflow.com/questions/446501/apache2-undefined-charset-utf-7-xss-vulnerability/446525#4465251Answer by dtsazza for Apache2 Undefined Charset UTF-7 XSS Vulnerabilitydtsazza2009-01-15T12:22:52Z2009-01-15T12:22:52Z<p>Well, first up it's only going to affect you if you are using the <a href="http://httpd.apache.org/docs/2.0/mod/mod_autoindex.html" rel="nofollow">mod_autoindex</a>. If you're not then you can stop reading now as there is no vulnerability on code you're running (though ideally, don't start using this module until you've updated the server).</p>
<p>Otherwise, it seems that an attacker can exploit the fact that the character set is not explicitly set to embed their own script into a page given a particularly crafted URL. This URL would use the "P" parameter in order to specify a filter for the autoindexing; an example exploit has understandably not been given but presumably certain clever manipulating of text would allow the attacker to insert their own Javascript onto the returned page.</p>
<p>Hence it's a standard <a href="http://en.wikipedia.org/wiki/Cross-site_scripting" rel="nofollow">XSS attack</a> (read the link if you're not familiar with the ramifications).</p>
<p>I would <em>strongly</em> suggest that you do upgrade, if you're affected, in order to get full security. Taking a website down for a while for security upgrades should be understood by its users, and it's much better than suffering an exploit. However, a workaround in the meantime would be to strip out any P parameters from incoming requests (assuming that no other pages on your site accept such a parameter, and that no other pages rely on passing filters to autoindexed pages), or even just disable the autoindexing mod altogether.</p>
http://stackoverflow.com/questions/446501/apache2-undefined-charset-utf-7-xss-vulnerability/531336#5313360Answer by Mohit Nanda for Apache2 Undefined Charset UTF-7 XSS VulnerabilityMohit Nanda2009-02-10T07:14:59Z2009-02-10T07:14:59Z<p>I ended up updating to Apache 2.2.11!</p>
<p>However, <a href="http://stackoverflow.com/users/45664/dtsazza">dtsazza</a>'s answer was right, but MY VA testing team wouldn't buy it. :)</p>