SecurityReason.com - Our Reason is

Security

Register | Forget Password | Login
SecurityReason
WLB
Services
RSS
Corporate
Note

If you have found a vulnerability, please send to our SecurityAlert Database :
secalert()securityreason()com

Also if you have new ( 0-day ) exploit, please send to our ExploitAlert Archive :
exploit()securityreason()com

Home arrow SecurityAlert Database

Arrow  Topic :

WordPress Charset SQL injection vulnerability (re-resend)


Arrow  SecurityAlert : 3433
Arrow  CVE : CVE-2007-6318
Arrow  SecurityRisk : Medium  Security Risk Medium  (About)
Arrow  Remote Exploit : Yes
Arrow  Local Exploit : No
Arrow  Exploit Available : Yes
Arrow  Credit : Abel Cheung
Arrow  Published : 13.12.2007

Arrow  Affected Software : WordPress <= 2.3.1



Arrow  Advisory Content :  

=== WordPress Charset SQL Injection Vulnerability ===

Release date: 2007-12-10
Last modified: 2007-12-10
Source: Abel Cheung <abelcheung at gmail dot com>
Affected version: WordPress <= 2.3.1
Exploit type: Remote
Risk: Moderate
CVE: pending
Reference:
http://www.abelcheung.org/advisory/20071210-wordpress-charset.txt

1. Summary
2. Detail
3. Proof of concept
4. Workaround

1. Summary

Quoting from http://wordpress.org/:
WordPress is a state-of-the-art semantic personal publishing platform
with a focus on aesthetics, web standards, and usability.
What a mouthful. WordPress is both free and priceless at the same
time.

It is found that the search function provided within WordPress fails to
sanitize input based on different character sets. So if WordPress tries
to query MySQL database using certain specific character sets, WordPress
search function is exploitable using charset-based SQL injection.

Currently known character sets exploitable include Big5 and GBK.
All of them may use backslash ('') as part of multibyte character.
WordPress with MySQL database created any other character sets
fulfilling
such property may also be exploitable.

Executing this attack alone results in exposure of all database
content on web interface without need of authentication. However, if
combined with other exploits (such as cookie authentication
vulnerability
in
http://www.cl.cam.ac.uk/~sjm217/advisories/wordpress-cookie-auth.txt),
any remote user can obtain WordPress admin privilege, resulting in
server
compromise.

2. Detail

Most database query in WordPress uses escape() method to sanitize SQL
string, which is essentially filtering input via addslashes() function.
However addslashes() fails to consider character set used in SQL string,
and blindly inserts backslash before any single quote, regardless of
whether such backslashes will form another valid character or not.

In proof of concept used in this advisory, two bytes 0xB327 is
injected into search variable. After escaping string with escape(),
a backslash (0x5C) is inserted before single quote (0x27), thus becoming
0xB35C27. However 0xB35C is a valid Big5 multibyte character,
leaving the single quote behind, so SQL injection occurs. The same
multibyte character is also valid under GBK encoding.

Inside SQL statement used within proof of concept, MD5 hashes of all
users' passwords are selected from database, and presented as post
title. With suitable SQL statement, any database field can be dumped
in similar way.

Currently it is known that WordPress search function uses this
insufficient method to sanitize database query. Possibly other
database queries utilizing same method to filter user input can be
equally susceptible.

However, note that WordPress sites using such character sets is not
very common, since most default installation uses either latin1 or utf8
character set. Asian sites, in particular Chinese ones, are more likely
vulnerable.

Although all WordPress versions before 2.3.1 are vulnerable, only
WordPress 2.2 or above allows changing database query character set
via WordPress configuration file (wp-config.php). For all versions
below 2.2, modifying MySQL configuration to use those character sets
is needed for exploit to be functional. The setting of WordPress HTML
character set (adjustable within WordPress admin page) is irrelevant.

Relevant code is listed below. In wp-includes/query.php:

// If a search pattern is specified, load the posts that match
if ( !empty($q['s']) ) {
......
foreach((array)$q['search_terms'] as $term) {
$term = addslashes_gpc($term);
......
}

addslashes_gpc() is defined in wp-includes/formatting.php:

function addslashes_gpc($gpc) {
......
return $wpdb->escape($gpc);
}

Finally, escape() method belongs to wp-includes/wp-db.php:

function escape($string) {
return addslashes( $string ); // Disable rest for now, causing problems
......
}

3. Proof of concept

a. After WordPress installation, modify wp-config.php to make sure
it uses certain character set for database connection (Big5 can also
be used):
define('DB_CHARSET', 'GBK');

b.
http://localhost/wordpress/index.php?exact=1&sentence=1&s=%b3%27)))/**/A
ND/**/ID=-1/**/UNION/**/SELECT/**/1,2,3,4,5,user_pass,7,8,9,10,11,12,13,
14,15,16,17,18,19,20,21,22,23,24/**/FROM/**/wp_users%23

4. Workaround

Note: This vulnerability only exists for database queries performed
using certain character sets. For databases created in most other
character sets no remedy is needed.

a. It is recommended to convert WordPress database to use character sets
not
vulnerable to such SQL exploit. One such charset is UTF-8, which does
not
use backslash ('') as part of character and it supports various
languages.
b. Alternatively, edit WordPress theme to remove search capability.

--
Abel Cheung (GPG Key: 0xC67186FF)
Key fingerprint: 671C C7AE EFB5 110C D6D1 41EE 4152 E1F1 C671 86FF
--------------------------------------------------------------------
* GNOME Hong Kong - http://www.gnome.hk/
* Opensource Application Knowledge Assoc. - http://oaka.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHXZH9QVLh8cZxhv8RAq1zAKCstcbLPWg3ixZvPy0o7YU+LDVTBQCdHvHE
9OB3ONLK5NA/bBly9qqpxmk=
=RnDI
-----END PGP SIGNATURE-----






Arrow  Feedback :

If you have additional information or notice any errors regarding this security advisory, please use contact form or email us at info()securityreason()com.
Alert

libc:fts_*() Multiple Denial of Service

Security Risk Medium- 2009-10-02

The fts functions are provided for traversing UNIX file hierarchies...

Apache RSS Apache Alert

» Apache 1.3.41 mod_proxy
   Integer overflow (code
   execution)

» Apache Tomcat 6.0.20 and
   5.5.28 unexpected file
   deletion in work
   directory

» Apache Tomcat 6.0.20 and
   5.5.28 insecure partial
   deploy after failed
   undeploy

» Apache Tomcat 6.0.20 and
   5.5.28 unexpected file
   deletion and/or
   alteration

PHP RSS PHP Alert

» PHP 5.2.12/5.3.1
   session.save_path
   safe_mode and
   open_basedir bypass

» PHP 5.2.12/5.3.1 Multiple
   Vulnerabilities

» PHP 5.2.11 libgd multiple
   vulnerabilities

» PHP 5.2.11 tempnam()
   safe_mode bypass

Copyright © SecurityReason.com. All Rights Reserved.