OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
Wordpress All versions XSS

jcarlos.nortegmail.com
Date: Tue May 01 2007 - 19:11:20 CDT


Advisory by Jose Carlos Norte

Wordpress is vulnerable to XSS attacks when custom 404 pages are used by the template.

The problem (sidebar.php):

<form method="get" id="searchform" action="<?php echo $_SERVER['PHP_SELF']; ?>">

if wordpress template use custom 404 pages, like:

<?php get_header(); ?>

        <div id="content" class="narrowcolumn">

                <h2 class="center">Error 404 - Not Found</h2>

        </div>

<?php get_sidebar(); ?>

$_SERVER['PHP_SELF']; can contain special characters to break out html and perform XSS attacks, example:

http://www.example.com/index.php/"><script>alert(document.cookie)</script>

if no custom 404 page set by wordpress theme this attacks is not posible.