Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:31296
HistoryOct 17, 2014 - 12:00 a.m.

Advisory 01/2014: Drupal7 - pre Auth SQL Injection Vulnerability

2014-10-1700:00:00
vulners.com
136
                     SektionEins GmbH
                    www.sektioneins.de

                 -= Security  Advisory =-

Advisory: Drupal - pre-auth SQL Injection Vulnerability
Release Date: 2014/10/15
Last Modified: 2014/10/15
Author: Stefan Horst [stefan.horst[at]sektioneins.de]
Application: Drupal >= 7.0 <= 7.31
Severity: Full SQL injection, which results in total control and code execution of Website.
Risk: Highly Critical
Vendor Status: Drupal 7.32 fixed this bug
Reference: http://www.sektioneins.com/en/advisories/advisory-012014-drupal-pre-auth-sql-injection-vulnerability.html

Overview:
Quote from http://www.drupal.org
"Come for the software, stay for the community
Drupal is an open source content management platform powering millions
of websites and applications. It’s built, used, and supported by an
active and diverse community of people around the world."

During a code audit of Drupal extensions for a customer an SQL Injection
was found in the way the Drupal core handles prepared statements.

A malicious user can inject arbitrary SQL queries. And thereby
control the complete Drupal site. This leads to a code execution as well.

This vulnerability can be exploited by remote attackers without any
kind of authentication required.

Details:
Drupal uses prepared statements in all its SQL queries. To handle IN
statements there is an expandArguments function to expand arrays.

protected function expandArguments(&$query, &$args) {
$modified = FALSE;

 // If the placeholder value to insert is an array, assume that we need
 // to expand it out into a comma-delimited set of placeholders.
 foreach &#40;array_filter&#40;$args, &#39;is_array&#39;&#41; as $key =&gt; $data&#41; {
    $new_keys = array&#40;&#41;;
    foreach &#40;$data as $i =&gt; $value&#41; {
       // This assumes that there are no other placeholders that use the same
       // name.  For example, if the array placeholder is defined as :example
       // and there is already an :example_2 placeholder, this will generate
       // a duplicate key.  We do not account for that as the calling code
       // is already broken if that happens.
       $new_keys[$key . &#39;_&#39; . $i] = $value;
    }

    // Update the query with the new placeholders.
    // preg_replace is necessary to ensure the replacement does not affect
    // placeholders that start with the same exact text. For example, if the
    // query contains the placeholders :foo and :foobar, and :foo has an
    // array of values, using str_replace would affect both placeholders,
    // but using the following preg_replace would only affect :foo because
    // it is followed by a non-word character.
    $query = preg_replace&#40;&#39;#&#39; . $key . &#39;&#92;b#&#39;, implode&#40;&#39;, &#39;, array_keys&#40;$new_keys&#41;&#41;, $query&#41;;

    // Update the args array with the new placeholders.
    unset&#40;$args[$key]&#41;;
    $args += $new_keys;

    $modified = TRUE;
  }

  return $modified;
}

The function assumes that it is called with an array which has no keys. Example:

db_query&#40;&quot;SELECT * FROM {users} where name IN &#40;:name&#41;&quot;, array&#40;&#39;:name&#39;=&gt;array&#40;&#39;user1&#39;,&#39;user2&#39;&#41;&#41;&#41;;

Which results in this SQL Statement

SELECT * from users where name IN &#40;:name_0, :name_1&#41;

with the parameters name_0 = user1 and name_1 = user2.

The Problem occurs, if the array has keys, which are no integers. Example:

db_query&#40;&quot;SELECT * FROM {users} where name IN &#40;:name&#41;&quot;, array&#40;&#39;:name&#39;=&gt;array&#40;&#39;test -- &#39; =&gt; &#39;user1&#39;,&#39;test&#39; =&gt; &#39;user2&#39;&#41;&#41;&#41;;

this results in an exploitable SQL query:

 SELECT * FROM users WHERE name = :name_test -- , :name_test AND status = 1

with parameters :name_test = user2.

Since Drupal uses PDO, multi-queries are allowed. So this SQL Injection can
be used to insert arbitrary data in the database, dump or modify existing data
or drop the whole database.

With the possibility to INSERT arbitrary data into the database an
attacker can execute any PHP code through Drupal features with callbacks.

Patch:

$new_keys = array&#40;&#41;;
foreach &#40;array_values&#40;$data&#41; as $i =&gt; $value&#41; {
  // This assumes that there are no other placeholders that use the same
  // name.  For example, if the array placeholder is defined as :example
  // and there is already an :example_2 placeholder, this will generate
  // a duplicate key.  We do not account for that as the calling code
  // is already broken if that happens.
  $new_keys[$key . &#39;_&#39; . $i] = $value;
}

Proof of Concept:

SektionEins GmbH has developed a proof of concept, but was asked by
Drupal to postpone the release.

Disclosure Timeline:

  1. Sep. 2014 - Notified the Drupal devs via security contact form
  2. Okt. 2014 - Relase of Bugfix by Drupal core Developers

Recommendation:

It is recommended to upgrade to the latest version of Drupal.

Grab your copy at:
https://www.drupal.org/project/drupal

CVE Information:

The Common Vulnerabilities and Exposures project (cve.mitre.org) has
assigned the name CVE-2014-3704 to this vulnerability.

GPG-Key:

pub 2048D/7830F25D 2014-08-12 Stefan Horst
Key fingerprint = 380D 2FEE 62E6 83AE 6A5C 7267 6AE5 40BE 7830 F25D

Copyright 2014 SektionEins GmbH. All rights reserved.